gulp-rb-validate-css
Advanced tools
Comparing version 0.0.8 to 0.0.9
15
index.js
@@ -12,3 +12,18 @@ /*jslint node: true*/ | ||
// Polyfill | ||
if (!String.prototype.includes) { | ||
String.prototype.includes = function (search, start) { | ||
'use strict'; | ||
if (typeof start !== 'number') { | ||
start = 0; | ||
} | ||
if (start + search.length > this.length) { | ||
return false; | ||
} else { | ||
return this.indexOf(search, start) !== -1; | ||
} | ||
}; | ||
} | ||
/** | ||
@@ -15,0 +30,0 @@ * Validation Error Printout |
{ | ||
"name": "gulp-rb-validate-css", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Gulp plugin to validate CSS files according to Web Frontend Guidelines", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13013
299