@boomerang-io/utils
Version:
A library of reusable utilities and hooks for React webapps on the Boomerang platform.
12 lines • 508 B
JavaScript
import { // Allows user to create their own custom validation sets
addCustomValidator, getCustomValidator, delCustomValidator } from "./customValidators";
import { // Allows the user to parse JSON AST to Yup
transform, transformAll, transformObject } from "./astGenerator";
export default {
addCustomValidator: addCustomValidator,
getCustomValidator: getCustomValidator,
delCustomValidator: delCustomValidator,
transform: transform,
transformAll: transformAll,
transformObject: transformObject
};