VWO Data Type Utility for Feature Management and Experimentation
VWO Data Type Utility for Feature Management and Experimentation. Provides utility functions for data type checking and manipulation.
- Type checking utilities (isString, isNumber, etc.)
- TypeScript support
- Lightweight and fast
This package is part of the vwo-fme-js-packages monorepo. To install dependencies, run from the monorepo root:
``bash`
pnpm install
To build this package:
`bash`
pnpm --filter @wingify/util-data-type build
`js`
import { isString } from '@wingify/util-data-type';
console.log(isString('test')); // true
- pnpm build – Build the packagepnpm test
- – Run testspnpm test:watch
- – Run tests in watch modepnpm test:coverage`– Run tests with coverage
-