Drop redundant module import

This commit is contained in:
Zlatan Vasović 2013-12-08 11:24:47 +01:00
parent e349fb2114
commit 0c457d48f8
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,9 @@ module.exports = function (grunt) {
// Force use of Unix newlines
grunt.util.linefeed = '\n';
RegExp.quote = require('regexp-quote')
RegExp.quote = function (string) {
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&')
}
var btoa = require('btoa')
// Project configuration.
grunt.initConfig({

View File

@ -36,7 +36,6 @@
, "grunt-recess": "~0.5.0"
, "grunt-saucelabs": "~4.1.2"
, "grunt-sed": "~0.1.1"
, "regexp-quote": "~0.0.0"
}
, "jspm": {
"main": "js/bootstrap"