@extable/sequence 0.1.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/builtins.d.ts +3 -0
- package/dist/index.js +1215 -283
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/builtins.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { SequenceRegistry } from './registry';
|
|
2
|
+
export declare const ordinalSuffix: (value: number) => string;
|
|
3
|
+
export declare const parseEnglishOrdinalWord: (value: string) => number | null;
|
|
4
|
+
export declare const formatEnglishOrdinalWord: (value: number) => string | null;
|
|
2
5
|
export declare const registerBuiltInLists: (registry: SequenceRegistry) => void;
|
|
3
6
|
export declare const registerBuiltInMatchers: (registry: SequenceRegistry) => void;
|
|
4
7
|
export declare const createBuiltInRegistry: (langs?: readonly string[]) => SequenceRegistry;
|