Changeset 79a0317 for imaps-frontend/node_modules/is-string/test
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/is-string/test/index.js
r0c6b92a r79a0317 6 6 7 7 test('not Strings', function (t) { 8 // @ts-expect-error 8 9 t.notOk(isString(), 'undefined is not String'); 9 10 t.notOk(isString(null), 'null is not String'); … … 24 25 25 26 test('@@toStringTag', { skip: !hasToStringTag }, function (t) { 27 /** @type {{ toString(): unknown; valueOf(): unknown; [Symbol.toStringTag]?: string; }} */ 26 28 var fakeString = { 27 29 toString: function () { return '7'; },
Note:
See TracChangeset
for help on using the changeset viewer.