bs-raw-files-generator.js: use the global directive to define the `btoa` variable.

This commit is contained in:
XhmikosR 2014-02-06 23:34:02 +02:00
parent 119ed54bd1
commit 5769b776e5
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
/* jshint node: true */
/* global btoa: true */
/*!
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
* http://getbootstrap.com
@ -6,7 +8,7 @@
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
var btoa = require('btoa') // jshint ignore:line
var btoa = require('btoa')
var fs = require('fs')
function getFiles(type) {