mirror of
https://github.com/twbs/bootstrap.git
synced 2025-12-08 00:03:56 -05:00
bs-raw-files-generator.js: use the global directive to define the btoa variable.
This commit is contained in:
parent
119ed54bd1
commit
5769b776e5
@ -1,4 +1,6 @@
|
|||||||
/* jshint node: true */
|
/* jshint node: true */
|
||||||
|
/* global btoa: true */
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
|
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
|
||||||
* http://getbootstrap.com
|
* http://getbootstrap.com
|
||||||
@ -6,7 +8,7 @@
|
|||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
* 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')
|
var fs = require('fs')
|
||||||
|
|
||||||
function getFiles(type) {
|
function getFiles(type) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user