Comparing version 1.1.3 to 1.2.0
@@ -0,1 +1,8 @@ | ||
v1.2.0 | ||
====== | ||
2016-07-06T07:05:47Z | ||
Base64 encoding and decoding. | ||
v1.1.3 | ||
@@ -2,0 +9,0 @@ ====== |
@@ -19,1 +19,27 @@ Copyright (c) 2016 Zhenzhen Zhan | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
================================================================================ | ||
"lib/base64.js" is authored by T. Jameson Little. Its license is as follows: | ||
The MIT License (MIT) | ||
Copyright (c) 2014 | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
{ | ||
"name": "fus-ext", | ||
"version": "1.1.3", | ||
"version": "1.2.0", | ||
"description": "FutureScript Extension", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -67,2 +67,10 @@ "use strict";Object.defineProperty(exports, "__esModule", { | ||
var _uint8Array = require("./uint8-array"); | ||
var feUint8Array = _interopRequireWildcard(_uint8Array); | ||
var _uint8ArrayStatic = require("./uint8-array-static"); | ||
var feUint8ArrayStatic = _interopRequireWildcard(_uint8ArrayStatic); | ||
var ok_573300145710716007 = function ok_573300145710716007(a) { | ||
@@ -978,2 +986,4 @@ return a !== undefined && a !== null; | ||
exports.feConsole = feConsole; | ||
exports.feUint8Array = feUint8Array; | ||
exports.feUint8ArrayStatic = feUint8ArrayStatic; | ||
exports.dotDot_573300145710716007 = dotDot_573300145710716007 = function (x) { | ||
@@ -996,14 +1006,22 @@ return (function () { | ||
})() : (function () { | ||
return typeof x === "number" ? (function () { | ||
return feNumber; | ||
return x === Uint8Array ? (function () { | ||
return feUint8ArrayStatic; | ||
})() : (function () { | ||
return typeof x === "string" ? (function () { | ||
return feString; | ||
return typeof x === "number" ? (function () { | ||
return feNumber; | ||
})() : (function () { | ||
return x instanceof Array ? (function () { | ||
return feArray; | ||
return typeof x === "string" ? (function () { | ||
return feString; | ||
})() : (function () { | ||
return x instanceof Date ? (function () { | ||
return feDate; | ||
})() : undefined; | ||
return x instanceof Array ? (function () { | ||
return feArray; | ||
})() : (function () { | ||
return x instanceof Date ? (function () { | ||
return feDate; | ||
})() : (function () { | ||
return x instanceof Uint8Array ? (function () { | ||
return feUint8Array; | ||
})() : undefined; | ||
})(); | ||
})(); | ||
})(); | ||
@@ -1010,0 +1028,0 @@ })(); |
@@ -34,2 +34,4 @@ "use strict";Object.defineProperty(exports, "__esModule", { | ||
exports.feConsole = _targetMain.feConsole; | ||
exports.feUint8Array = _targetMain.feUint8Array; | ||
exports.feUint8ArrayStatic = _targetMain.feUint8ArrayStatic; | ||
exports.dotDot_573300145710716007 = _targetMain.dotDot_573300145710716007; | ||
@@ -36,0 +38,0 @@ exports.global = global = _targetMain.sys.global;exports.setImmediate = var_573300145710716007_2; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
312482
45
3937