Sha256: 7223349974f14ded6d1f35e5d1295fdd41d719a63ad5fe72078483beec9108c3

Contents?: true

Size: 541 Bytes

Versions: 6

Compression:

Stored size: 541 Bytes

Contents

'use strict';
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
var $fill = require('../internals/array-fill');

var aTypedArray = ArrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;

// `%TypedArray%.prototype.fill` method
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.fill
// eslint-disable-next-line no-unused-vars
exportTypedArrayMethod('fill', function fill(value /* , start, end */) {
  return $fill.apply(aTypedArray(this), arguments);
});

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/es.typed-array.fill.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/es.typed-array.fill.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.fill.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.fill.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/es.typed-array.fill.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/es.typed-array.fill.js