Commit 0c457d48 authored by Zlatan Vasović's avatar Zlatan Vasović

Drop redundant module import

parent e349fb21
......@@ -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({
......
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment