mirror of
https://github.com/apache/cordova-android.git
synced 2025-04-03 05:11:59 +08:00

This reverts commit 5a5f544a4890ff65519329303e75a649e482df23. Rationale: base64-js update in 5a5f544 causes extra base64-js version to be installed under plist (node_modules/plist/node_modules/base64-js), which would need to be committed to satisfy the needs of the deprecated Node.js 4 version. The extra base64-js version in node_modules/plist/node_modules/base64-js was missed at the time 5a5f544 was committed. The base64-js update in 5a5f544 is now deemed as not wanted due to the extra base64-js version that would need to be committed. The other dependencies updates in 5a5f544 may be nice to have but not considered necessary for the patch release. Reverting now to unblock the upcoming 7.1.4 patch release. Note that neither 5a5f544 nor this revert will show up in the master branch.
19 lines
455 B
JavaScript
19 lines
455 B
JavaScript
var test = require('tape')
|
|
var b64 = require('../')
|
|
|
|
test('decode url-safe style base64 strings', function (t) {
|
|
var expected = [0xff, 0xff, 0xbe, 0xff, 0xef, 0xbf, 0xfb, 0xef, 0xff]
|
|
|
|
var actual = b64.toByteArray('//++/++/++//')
|
|
for (var i = 0; i < actual.length; i++) {
|
|
t.equal(actual[i], expected[i])
|
|
}
|
|
|
|
actual = b64.toByteArray('__--_--_--__')
|
|
for (i = 0; i < actual.length; i++) {
|
|
t.equal(actual[i], expected[i])
|
|
}
|
|
|
|
t.end()
|
|
})
|