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

Drop redundant module import

parent e349fb21
1 merge request!11776Drop redundant module import
Showing with 3 additions and 2 deletions
+3 -2
...@@ -6,7 +6,9 @@ module.exports = function (grunt) { ...@@ -6,7 +6,9 @@ module.exports = function (grunt) {
// Force use of Unix newlines // Force use of Unix newlines
grunt.util.linefeed = '\n'; grunt.util.linefeed = '\n';
RegExp.quote = require('regexp-quote') RegExp.quote = function (string) {
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&')
}
var btoa = require('btoa') var btoa = require('btoa')
// Project configuration. // Project configuration.
grunt.initConfig({ grunt.initConfig({
......
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
, "grunt-recess": "~0.5.0" , "grunt-recess": "~0.5.0"
, "grunt-saucelabs": "~4.1.2" , "grunt-saucelabs": "~4.1.2"
, "grunt-sed": "~0.1.1" , "grunt-sed": "~0.1.1"
, "regexp-quote": "~0.0.0"
} }
, "jspm": { , "jspm": {
"main": "js/bootstrap" "main": "js/bootstrap"
......
Supports Markdown
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