Sha256: aa737874ac38f1d1fa342713976fa9ed395cbf2549f12e94a59b4d9452e51758
Contents?: true
Size: 359 Bytes
Versions: 29
Compression:
Stored size: 359 Bytes
Contents
'use strict'; var create = Object.create, getPrototypeOf = Object.getPrototypeOf , x = {}; module.exports = function (/*customCreate*/) { var setPrototypeOf = Object.setPrototypeOf , customCreate = arguments[0] || create; if (typeof setPrototypeOf !== 'function') return false; return getPrototypeOf(setPrototypeOf(customCreate(null), x)) === x; };
Version data entries
29 entries across 19 versions & 7 rubygems