Sha256: 6278805336652fc99576bd46222617b5f4d020b887a80bbaaf089cc3a24663c4
Contents?: true
Size: 636 Bytes
Versions: 75
Compression:
Stored size: 636 Bytes
Contents
// @ts-nocheck (function (undefined) { // Detection from https://github.com/Financial-Times/polyfill-library/blob/v3.111.0/polyfills/Date/now/detect.js var detect = ('Date' in self && 'now' in self.Date && 'getTime' in self.Date.prototype); if (detect) return // Polyfill from https://polyfill.io/v3/polyfill.js?version=3.111.0&features=Date.now&flags=always Date.now = function () { return new Date().getTime(); }; }).call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {}); //# sourceMappingURL=vendor/polyfills/Date/now.mjs.map
Version data entries
75 entries across 75 versions & 1 rubygems