type-fns
Version:
A set of types, type checks, and type guards for simpler, safer, and easier to read code.
12 lines • 417 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/* eslint-disable @typescript-eslint/no-unused-vars */
describe('DropFirst', () => {
it('should be drop the first type in an array', () => {
const numStrStr = [1, '2', '3'];
const strStr = ['1', '2'];
const str = strStr[0];
const num = numStrStr[0];
});
});
//# sourceMappingURL=DropFirst.test.js.map