Package Exports
- @1studio/utils
- @1studio/utils/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@1studio/utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
utils ·

A collection of useful utilities with Typescript type checking (since 5.0). - older version use Flow type checking.
Installation
Using npm:
$ npm i -S @1studio/utils
Transpiler for the Flow:
$ npm i -D @babel/core @babel/preset-env @babel/preset-typescript babel-loader
.babelrc
{
"presets": ["@babel/preset-env", "@babel/preset-typescript"],
"plugins": ["@babel/plugin-transform-runtime", "@babel/plugin-proposal-optional-chaining", "@babel/plugin-proposal-object-rest-spread", "@babel/plugin-proposal-class-properties"],
"env": {
"production": {
"presets": ["babel-minify"]
}
}
}
webpack.config.js
module: {
rules: [
{
test: /\.js$/,
exclude: [/node_modules\/(?!@1studio)/],
use: [{
loader: 'babel-loader'
}]
},
],
}
Manual
Example (ES6):
import { getDistanceFromLatLonInKm } from '@1studio/utils/geometry';
const distance = getDistanceFromLatLonInKm(47.4925, 19.0513, 40.71448, -74.00598);
// Budapest <-> New York distance in km
Example (direct import):
import checkPropTypes from '@1studio/utils/propType/checkPropTypes'
checkPropTypes('string', PropTypes.number);
// -> [errors]
Example (Flow):
// @flow
import clamp from '@1studio/utils/math/clamp';
clamp('a');
// => Flow errors
License
@1studio/utils is BSD licensed.