UNPKG

gridpaint

Version:

a canvas for creating grid-based art in the browser

11 lines (10 loc) 263 B
if (process.browser) { module.exports = function (width, height) { var c = document.createElement('canvas'); c.width = width || 300; c.height = height || 150; return c; }; } else { module.exports = require('canvas'); }