@tianwenh/utils
v0.5.5
Published
List of util functions
Downloads
7
Readme
@tianwenh/utils
List of utils.
Dev
pnpm i
npm run build
// from file
import { slugify } from '@tianwenh/utils/string';
slugify('hello world');
import { getTheme } from '@tianwenh/utils/theme';
getTheme();
// or
import { string, theme } from '@tianwenh/utils';
string.slugify('hello world');
theme.getTheme();