Sha256: ed5ce88dd74fec3139b6609700f46ba9cf7df528e4dc9ae5612548cdf257f786
Contents?: true
Size: 387 Bytes
Versions: 4
Compression:
Stored size: 387 Bytes
Contents
'use strict'; var isPrototypeOf = require('../../internals/object-is-prototype-of'); var method = require('../string/virtual/repeat'); var StringPrototype = String.prototype; module.exports = function (it) { var own = it.repeat; return typeof it == 'string' || it === StringPrototype || (isPrototypeOf(StringPrototype, it) && own === StringPrototype.repeat) ? method : own; };
Version data entries
4 entries across 4 versions & 1 rubygems