UNPKG

canonical

Version:

Canonical code style linter and formatter for JavaScript, SCSS, CSS and JSON.

9 lines (6 loc) 164 B
'use strict'; var isDate = require('./is-date'); module.exports = function (x) { if (!isDate(x)) throw new TypeError(x + " is not a Date object"); return x; };