Plask wrapper for browserify.
It uses "browser" field in package.json to avoid requiring "plask" module in the browser
and make using -i plask
browserify unnecesary when bundling a pex app.
It's recommended to use is-plask
together with this module
var plask = require('plask-wrap')
var isPlask = require('is-plask')
if (isPlask) {
var canvas = plask.SkCanvas.create(1280, 720)
}
MIT, see LICENSE.md for details.