Sha256: 28159fb5755c3a10057d3d67fcd3dc1699c397f56410c59ec8217ad28a335f3a
Contents?: true
Size: 188 Bytes
Versions: 29
Compression:
Stored size: 188 Bytes
Contents
'use strict'; module.exports = function () { var arr = [1, 2, 3, 4, 5]; if (typeof arr.copyWithin !== 'function') return false; return String(arr.copyWithin(1, 3)) === '1,4,5,4,5'; };
Version data entries
29 entries across 19 versions & 7 rubygems