UNPKG

kindergarten

Version:

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

9 lines (6 loc) 167 B
import Sandbox from './Sandbox'; /** * Create a new instance of Sandbox. */ const createSandbox = (...args) => new Sandbox(...args); export default createSandbox;