UNPKG

glint

Version:

Glint is an asset (css, js, whatever-you-need) management that helps you organize and manage your client side files

14 lines (9 loc) 246 B
'use strict'; var sass = require('node-sass'); function Scss(filePath, content, options, cb) { sass.render(content, function (err, css) { cb(err, css); }, options || {}); } Scss.outputExtension = 'css'; module.exports = Scss;