build: Prepared package for npm publishing.

This commit is contained in:
Spencer Brower
2023-05-25 15:53:05 -04:00
parent c19e7c3a17
commit c05e2adce5
6 changed files with 105 additions and 5 deletions

5
lib/utils.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import type { curry as _curry, when as _when } from 'ramda';
export declare const curry: typeof _curry;
export declare const isEmpty: (str: string) => boolean;
export declare const tail: (str: string) => string;
export declare const when: typeof _when;