Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
⏳ Fantastic cron parser and constructor.
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
JSR Score
100%
Published
2 months ago (0.3.3)
import { parseDecimal } from "jsr:@coven/parsers@^0.3.3"; import { isUndefined } from "jsr:@coven/predicates@^0.3.3"; /** * Predicate checking if given value is a number. */ export const isNumberString = <Value extends number>( input: string, ): input is `${Value}` => !isUndefined(parseDecimal(input));