UNPKG

kindergarten

Version:

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

10 lines (8 loc) 263 B
'use strict'; exports.__esModule = true; exports.default = NoSandboxError; function NoSandboxError(message) { this.name = 'NoSandboxError'; this.message = message || 'Perimeter must be imported into a sandbox.'; } NoSandboxError.prototype = Error.prototype;