You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
541 B
14 lines
541 B
|
3 years ago
|
'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);
|
||
|
|
});
|