Sha256: 7485f4f0302bd89cbed20e82556628bc327065335b0ea303b6e1bdb556b12b4a
Contents?: true
Size: 476 Bytes
Versions: 24
Compression:
Stored size: 476 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = _default; /** * Check if an options object contains a certain `ignore` keyword. * It will look for an `ignore` property whose value should * be an array of keywords. * * @param {object} options * @param {string} ignoredName * @return {boolean} */ function _default(options, ignoredName) { return options && options.ignore && options.ignore.includes(ignoredName); }
Version data entries
24 entries across 24 versions & 1 rubygems