isSelfDescribing
should be a function.
+ testString: assert(typeof isSelfDescribing=='function');
+ - text: isSelfDescribing()
should return a boolean.
+ testString: assert(typeof isSelfDescribing(2020) =='boolean');
+ - text: isSelfDescribing(2020)
should return true
.
+ testString: assert.equal(isSelfDescribing(2020), true);
+ - text: isSelfDescribing(3021)
should return false
.
+ testString: assert.equal(isSelfDescribing(3021), false);
+ - text: isSelfDescribing(3211000)
should return true
.
+ testString: assert.equal(isSelfDescribing(3211000), true);
+```
+
+