is-decimal is a small ESM JavaScript function that checks whether a given character (string) or code point (number) is an ASCII decimal digit. It is useful as a shared helper for validating numeric characters, especially when used by related packages.
Project status
- This repository appears to be maintained, with at least one upstream push recorded in 2022-11-23, but the most recent published updates are older (latest listed is 2.0.1 in 2021-11-04).
- Update cadence looks slow and bursty, with a gap from 2.0.1 (2021) back to 2.0.0 (2021-03) and then to 1.0.4 (2020-01). After 2022, there is no newer release/update shown in the provided list.
AI summary generated Today
Recent updates
2.0.1
11/4/2021Release 2.0.1 mainly updates documentation and tightens TypeScript type-checking. The runtime implementation change is minimal (a `var` to `const` refactor), while the build and type-generation pipeline changes are more substantial.
2.0.0
3/11/2021Release 2.0.0 primarily switches the package to ESM and introduces JSDoc-driven type generation. The public runtime API is changed from a CommonJS-exported function to an ESM named export.
BreakingFeatures1.0.4
1/25/2020Release 1.0.4 is described as a prose refactor in the release notes. The actual diff includes non-trivial build-script and tooling changes, including a modification to the minification build pipeline and several devDependency version bumps.
1.0.3
5/10/2019Release 1.0.3 is primarily documentation and metadata related, aligning with the listed commits: adding badges, switching URLs to HTTPS, and renaming LICENSE to lowercase. The code diff, however, also includes build and CI tooling changes in package.json and Travis configuration that are not described in the release notes.
1.0.2
4/21/2018Release 1.0.2 is labeled as a code-style refactor, but the diff shows broader build, tooling, and CI changes. The runtime library code appears effectively unchanged (same exported function behavior), while the development workflow and dependency/toolchain versions were updated.
1.0.1
7/18/2017Release 1.0.1 is presented as a documentation-only update (refactoring the README example, updating docs, and removing history.md). The code diff shows no runtime logic changes to the `decimal` function, but it does include several undocumented developer tooling and CI configuration changes.
1.0.0
7/11/2016Release 1.0.0 was published on 2016-07-11, but the provided release notes contain no documented changes. Based on the available information, there are no specific new features, fixes, or breaking changes described for developers to assess.