diff options
Diffstat (limited to 'node_modules/locutus/php/strings/echo.js.map')
-rw-r--r-- | node_modules/locutus/php/strings/echo.js.map | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/node_modules/locutus/php/strings/echo.js.map b/node_modules/locutus/php/strings/echo.js.map deleted file mode 100644 index c75e2e1..0000000 --- a/node_modules/locutus/php/strings/echo.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/strings/echo.js"],"names":["module","exports","echo","args","Array","prototype","slice","call","arguments","console","log","join"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,GAAiB;AAChC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,OAAOC,MAAMC,SAAN,CAAgBC,KAAhB,CAAsBC,IAAtB,CAA2BC,SAA3B,CAAX;AACA,SAAOC,QAAQC,GAAR,CAAYP,KAAKQ,IAAL,CAAU,GAAV,CAAZ,CAAP;AACD,CA5BD","file":"echo.js","sourcesContent":["module.exports = function echo () {\n // discuss at: http://locutus.io/php/echo/\n // original by: Philip Peterson\n // improved by: echo is bad\n // improved by: Nate\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // revised by: Der Simon (http://innerdom.sourceforge.net/)\n // bugfixed by: Eugene Bulkin (http://doubleaw.com/)\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // bugfixed by: Brett Zamir (http://brett-zamir.me)\n // bugfixed by: EdorFaus\n // note 1: In 1.3.2 and earlier, this function wrote to the body of the document when it\n // note 1: was called in webbrowsers, in addition to supporting XUL.\n // note 1: This involved >100 lines of boilerplate to do this in a safe way.\n // note 1: Since I can't imageine a complelling use-case for this, and XUL is deprecated\n // note 1: I have removed this behavior in favor of just calling `console.log`\n // note 2: You'll see functions depends on `echo` instead of `console.log` as we'll want\n // note 2: to have 1 contact point to interface with the outside world, so that it's easy\n // note 2: to support other ways of printing output.\n // revised by: Kevin van Zonneveld (http://kvz.io)\n // input by: JB\n // example 1: echo('Hello world')\n // returns 1: undefined\n\n var args = Array.prototype.slice.call(arguments)\n return console.log(args.join(' '))\n}\n"]}
\ No newline at end of file |