997ced40d9abfa001cbadd89bcfc2a3e7a3897640132e75fccfe8fafbbeecc8488e92e77be473f4b305cff807721962171eba76583e3c1c5fba6a1cdbed7a6 486 B

12345678
  1. 'use strict';
  2. var TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS = require('../internals/typed-array-constructors-require-wrappers');
  3. var exportTypedArrayStaticMethod = require('../internals/array-buffer-view-core').exportTypedArrayStaticMethod;
  4. var typedArrayFrom = require('../internals/typed-array-from');
  5. // `%TypedArray%.from` method
  6. // https://tc39.es/ecma262/#sec-%typedarray%.from
  7. exportTypedArrayStaticMethod('from', typedArrayFrom, TYPED_ARRAYS_CONSTRUCTORS_REQUIRES_WRAPPERS);