.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / es / instance / fill.js
1 var fill = require('../array/virtual/fill');
2
3 var ArrayPrototype = Array.prototype;
4
5 module.exports = function (it) {
6   var own = it.fill;
7   return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.fill) ? fill : own;
8 };