From b0ee729e188d13c5ddeab0671a68cfc78c3d3f92 Mon Sep 17 00:00:00 2001 From: Aman Sachan Date: Thu, 28 May 2026 00:08:26 +0000 Subject: [PATCH] fix: remove console.log from jsonp function --- src/json/jsonp.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/json/jsonp.js b/src/json/jsonp.js index fb3c85c..56c85c2 100644 --- a/src/json/jsonp.js +++ b/src/json/jsonp.js @@ -54,7 +54,6 @@ function jsonp(url, opts, fn) { cleanup(); if (fn) fn(data, null); }; - console.log(url); url += (~url.indexOf('?') ? '&' : '?') + param + '=' + enc(id); url = url.replace('?&', '?'); script = document.createElement('script');