Sha256: 680e6f3a936a1ce48893a019f2c17354a4dae9c3de736456da95e0ea1a632872
Contents?: true
Size: 1.19 KB
Versions: 19
Compression:
Stored size: 1.19 KB
Contents
import { module, test } from '../qunit'; import moment from '../../moment'; module('instanceof'); test('instanceof', function (assert) { var extend = function (a, b) { var i; for (i in b) { a[i] = b[i]; } return a; }; assert.equal(moment() instanceof moment, true, 'simple moment object'); assert.equal( extend({}, moment()) instanceof moment, false, 'extended moment object' ); assert.equal(moment(null) instanceof moment, true, 'invalid moment object'); assert.equal( new Date() instanceof moment, false, 'date object is not moment object' ); assert.equal( Object instanceof moment, false, 'Object is not moment object' ); assert.equal('foo' instanceof moment, false, 'string is not moment object'); assert.equal(1 instanceof moment, false, 'number is not moment object'); assert.equal(NaN instanceof moment, false, 'NaN is not moment object'); assert.equal(null instanceof moment, false, 'null is not moment object'); assert.equal( undefined instanceof moment, false, 'undefined is not moment object' ); });
Version data entries
19 entries across 19 versions & 1 rubygems