source: imaps-frontend/node_modules/core-js/modules/esnext.uint8-array.from-base64.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 694 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var globalThis = require('../internals/global-this');
4var arrayFromConstructorAndList = require('../internals/array-from-constructor-and-list');
5var $fromBase64 = require('../internals/uint8-from-base64');
6
7var Uint8Array = globalThis.Uint8Array;
8
9// `Uint8Array.fromBase64` method
10// https://github.com/tc39/proposal-arraybuffer-base64
11if (Uint8Array) $({ target: 'Uint8Array', stat: true }, {
12 fromBase64: function fromBase64(string /* , options */) {
13 var result = $fromBase64(string, arguments.length > 1 ? arguments[1] : undefined, null, 0x1FFFFFFFFFFFFF);
14 return arrayFromConstructorAndList(Uint8Array, result.bytes);
15 }
16});
Note: See TracBrowser for help on using the repository browser.