Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-boolean-object/test/index.js
r0c6b92a r79a0317 7 7 test('not Booleans', function (t) { 8 8 t.test('primitives', function (st) { 9 // @ts-expect-error 9 10 st.notOk(isBoolean(), 'undefined is not Boolean'); 10 11 st.notOk(isBoolean(null), 'null is not Boolean'); … … 31 32 32 33 test('@@toStringTag', { skip: !hasToStringTag }, function (t) { 34 /** @type {{ toString(): unknown; valueOf(): unknown; [Symbol.toStringTag]?: string; }} */ 33 35 var fakeBoolean = { 34 36 toString: function () { return 'true'; },
Note:
See TracChangeset
for help on using the changeset viewer.