Comparing version 0.6.0 to 0.6.1
{ | ||
"name": "vbb-util", | ||
"description": "JavaScript utilites for the VBB API client.", | ||
"version": "0.6.0", | ||
"version": "0.6.1", | ||
"main": "./src/index", | ||
@@ -6,0 +6,0 @@ "keywords": [ |
@@ -71,8 +71,8 @@ module.exports = { | ||
exports.stopwords.filter = function (word) { | ||
return 0 > stopwords.indexOf(word); | ||
module.exports.stopwords.filter = function (word) { | ||
return 0 > module.exports.stopwords.indexOf(word); | ||
}; | ||
exports.filterStopwords = function (words) { | ||
return words.filter(exports.stopwords.filter); | ||
module.exports.filterStopwords = function (words) { | ||
return words.filter(module.exports.stopwords.filter); | ||
}; |
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
13871