1
0
CompleteNodeJS/notes-app/node_modules/validator/lib/util/includes.js

13 lines
264 B
JavaScript
Raw Normal View History

2019-08-11 18:15:16 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
var includes = function includes(arr, val) {
return arr.some(function (arrVal) {
return val === arrVal;
});
};
exports.default = includes;
module.exports = exports["default"];