@odczynflnpm/omnis-veritatis-nesciunt
v1.0.0
Published
[![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-im
Downloads
4
Maintainers
Keywords
Readme
@odczynflnpm/omnis-veritatis-nesciunt
ES spec-compliant shim for Date
. Invoke its "shim" method to shim Date
if it is unavailable or noncompliant.
This package implements the es-shim API “multi” interface. It works in an ES3-supported environment, and complies with the spec.
Most common usage:
var assert = require('assert');
var shims = require('@odczynflnpm/omnis-veritatis-nesciunt');
assert.deepEqual(shims, [
'Date',
'Date.prototype.getFullYear',
'Date.prototype.getMonth',
'Date.prototype.getDate',
'Date.prototype.getUTCDate',
'Date.prototype.getUTCFullYear',
'Date.prototype.getUTCMonth',
'Date.prototype.toUTCString',
'Date.prototype.toDateString',
'Date.prototype.toString',
'Date.prototype.toISOString',
'Date.prototype.toJSON',
'Date.now',
'Date.parse',
]);
require('@odczynflnpm/omnis-veritatis-nesciunt/auto'); // will be a no-op if not needed
assert.ok(new Date() instanceof Date);
assert.equal(typeof Date.now(), 'number');
// etc, with all the Date methods you expect
Tests
Simply clone the repo, npm install
, and run npm test