UNPKG

kindergarten

Version:

Kindergarten is a JavaScript library which helps programmers to achieve modular security using sandbox pattern

9 lines (5 loc) 158 B
import isObject from 'lodash/isObject'; import Rule from '../Rule'; const isRule = (obj) => isObject(obj) && obj instanceof Rule; export default isRule;