Sha256: d0fc9dd0ca85cf7e7c76ee3960ba2436bdade998d9b0d5b3a506267503bbc611

Contents?: true

Size: 630 Bytes

Versions: 34

Compression:

Stored size: 630 Bytes

Contents

// 22.1.3.6 Array.prototype.fill(value, start = 0, end = this.length)
'use strict';
var toObject = require('./$.to-object')
  , toIndex  = require('./$.to-index')
  , toLength = require('./$.to-length');
module.exports = [].fill || function fill(value /*, start = 0, end = @length */){
  var O      = toObject(this)
    , length = toLength(O.length)
    , $$     = arguments
    , $$len  = $$.length
    , index  = toIndex($$len > 1 ? $$[1] : undefined, length)
    , end    = $$len > 2 ? $$[2] : undefined
    , endPos = end === undefined ? length : toIndex(end, length);
  while(endPos > index)O[index++] = value;
  return O;
};

Version data entries

34 entries across 17 versions & 7 rubygems

Version Path
ilog-0.4.1 node_modules/core-js/modules/$.array-fill.js
ilog-0.4.1 node_modules/core-js/library/modules/$.array-fill.js
ilog-0.4.0 node_modules/core-js/modules/$.array-fill.js
ilog-0.4.0 node_modules/core-js/library/modules/$.array-fill.js
ilog-0.3.3 node_modules/core-js/modules/$.array-fill.js
ilog-0.3.3 node_modules/core-js/library/modules/$.array-fill.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/fbjs/node_modules/core-js/library/modules/$.array-fill.js
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/fbjs/node_modules/core-js/modules/$.array-fill.js
locomotivecms-3.4.0 app/javascript/node_modules/fbjs/node_modules/core-js/library/modules/$.array-fill.js
locomotivecms-3.4.0 app/javascript/node_modules/fbjs/node_modules/core-js/modules/$.array-fill.js
cortex-0.1.3 spec/dummy/node_modules/fbjs/node_modules/core-js/library/modules/$.array-fill.js
cortex-0.1.3 spec/dummy/node_modules/fbjs/node_modules/core-js/modules/$.array-fill.js
lanes-0.8.0 node_modules/core-js/library/modules/$.array-fill.js
lanes-0.8.0 node_modules/core-js/modules/$.array-fill.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/core-js/library/modules/$.array-fill.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/core-js/modules/$.array-fill.js
xcodebuild-helper-1.2.3 externals/ios-sim-master/node_modules/core-js/library/modules/$.array-fill.js
xcodebuild-helper-1.2.3 externals/ios-sim-master/node_modules/core-js/modules/$.array-fill.js
babel-schmooze-sprockets-0.1.3 node_modules/core-js/modules/$.array-fill.js
babel-schmooze-sprockets-0.1.3 node_modules/core-js/library/modules/$.array-fill.js