@1studio/utils
Version:
A collection of useful utilities.
22 lines (18 loc) • 373 B
text/typescript
/**
* @fileOverview Mathematical utilities
* @namespace math
*/
import clamp from './math/clamp';
import nthroot from './math/nthroot';
import simplify from './math/simplify';
import gcd from './math/gcd';
import { remToPix } from './math/px';
export { clamp, nthroot, simplify, gcd, remToPix };
export default
{
clamp,
nthroot,
simplify,
gcd,
remToPix,
};