- Last updated: 2023-04-08T11:09:50Z
- Generator: thi.ng/monopub
All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.
Note: Unlisted patch versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies.
3.3.5 (2022-12-16)
- add generics for isFunction() (2850048)
3.3.0 (2022-10-17)
- add isTouchEvent() (7ef2acc)
3.2.1 (2022-06-11)
- update export map (add missing isBigInt()) (9270de0)
3.2.0 (2022-06-09)
- add isBigInt(), update pkg/readme (bb6d833)
3.1.0 (2021-11-17)
- Using workspaces for local tools (bf7a404)
Improving the overall build ergonomics
- introduced a tools workspaces
- imported it in all needed packages/examples
- inclusive project root
- testrunner to binary (4ebbbb2) this commit reverts (partly) changes made in: ef346d7a8753590dc9094108a3d861a8dbd5dd2c overall purpose is better testament ergonomics: instead of having to pass NODE_OPTIONS with every invocation having a binary to handle this for us.
3.0.7 (2021-11-10)
- add boolean to isPrimitive() (fde4d2b)
3.0.1 (2021-10-13)
- update imports in all pkgs (5fa2b6f)
- add .js suffix for all relative imports
- update imports in all tests/pkgs (effd591)
3.0.0 (2021-10-12)
- major update of ALL pkgs (export maps, ESM only) (0d1d6ea)
- BREAKING CHANGE: discontinue CommonJS & UMD versions
- only ESM modules will be published from now on
- CJS obsolete due to ESM support in recent versions of node:
- i.e. launch NodeJS via:
node --experimental-specifier-resolution=node --experimental-repl-await
- in the node REPL use
await import(...)
instead ofrequire()
- UMD obsolete due to widespread browser support for ESM Also:
- normalize/restructure/reorg all package.json files
- cleanup all build scripts, remove obsolete
- switch from mocha to @thi.ng/testament for all tests
- update all tests in all pkgs (8b582bc)
- update all to use @thi.ng/testament
2.9.6 (2021-04-03)
- add implementsFunction() generics (63d78cb)
2.9.0 (2021-02-20)
- replace isPrototypePolluted() w/ isProtoPath() (d276b84)
- isPrototypePolluted() assumed given string is a single property
name, but could be a
.
separated lookup path. New function checks for that and also supports arrays - add tests
- isPrototypePolluted() assumed given string is a single property
name, but could be a
- add isIllegalKey() (make public) (507fc80)
2.8.0 (2021-01-10)
- add isNumericInt/Float() checks (7e054c1)
2.7.9 (2020-09-22)
- update isNode() (e988d0d)
2.7.3 (2020-07-02)
- update isPlainObject() type assertion (e5ceb7d)
2.7.0 (2020-05-14)
- add isAsyncIterable() (59ac3a9)
2.6.0 (2020-03-28)
- add better type assertion for isTypedArray() (548ba52)
- add new string validators (9d9e8a8)
- add isAlpha(), isAlphaNum(), isNumeric()
- add isASCII(), isPrintableASCII()
- add isDataURL()
- add isFloatString(), isIntString()
- add isHex()
- typo (4e4a6e1)
2.5.0 (2020-01-24)
- add hasBigInt() (aa4faed)
2.4.0 (2019-09-21)
- add generics to existsAndNotNull() (bced8b9)
2.3.0 (2019-08-16)
- isNil and isHexColorString (ebaa15e)
- test, better naming (90dce20)
- better hex string, export, isNil doc (19b1981)
- fix vscode autoimport (8ac6408)
2.2.0 (2019-07-07)
- enable TS strict compiler flags (refactor) (90515e7)
- isMobile for Chrome iOS (8216d48)
2.1.2 (2019-03-12)
2.1.0 (2019-02-10)
- add isPrimitive() (190701e)
2.0.0 (2019-01-21)
- update package build scripts & outputs, imports in ~50 packages (b54b703)
- BREAKING CHANGE: enabled multi-outputs (ES6 modules, CJS, UMD)
- build scripts now first build ES6 modules in package root, then call
scripts/bundle-module
to build minified CJS & UMD bundles in/lib
- all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.
- build scripts now first build ES6 modules in package root, then call
- update all as arrow fns (b70a3e1)
1.5.4 (2018-06-18)
- isOdd() for negative values (3589e15)
1.5.1 (2018-04-29)
1.5.0 (2018-04-26)
- add date, map, nan, set checks (a865f62)
1.4.0 (2018-04-08)
- add hasPerformance() check (performance.now) (40d706b)
1.3.2 (2018-04-04)
- add prototype check for isPlainObject(), add tests (bffc443)
1.3.0 (2018-03-08)
- add isPromise() & isPromiseLike() (9900e99)
1.2.0 (2018-02-08)
- add new predicates, refactor existing (68f8fc2)
- add: isBlob, isEven, isFile, isInRange, isOdd, isRegExp
- add: hasMinLength, hasMaxLength
- update: existsAndNotNull, isArray, isArrayLike
1.1.6 (2018-02-02)
- isPlainObject() (9848576)
1.1.1 (2018-01-24)
- initial re-import as monorepo, update readme files, cleanup imports (04ff6e9)