summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/escope/node_modules/es6-weak-map/node_modules/es5-ext/test/date/valid-date.js
blob: 98787e40781687737f4e86558404a99a27c66001 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

module.exports = function (t, a) {
	var d = new Date();
	a(t(d), d, "Date");
	a.throws(function () {
		t({});
	}, "Object");
	a.throws(function () {
		t({ valueOf: function () { return 20; } });
	}, "Number object");
};