Sha256: 09f1e5ab56a90f1cafc4d37d8ec9c0901b2ac4000175b0f68d7289f5f42e0d65

Contents?: true

Size: 664 Bytes

Versions: 59

Compression:

Stored size: 664 Bytes

Contents

'use strict';

var toRegex = require('to-regex');
var regexNot = require('regex-not');
var cached;

/**
 * Get the last element from `array`
 * @param {Array} `array`
 * @return {*}
 */

exports.last = function(arr) {
  return arr[arr.length - 1];
};

/**
 * Create and cache regex to use for text nodes
 */

exports.createRegex = function(pattern, include) {
  if (cached) return cached;
  var opts = {contains: true, strictClose: false};
  var not = regexNot.create(pattern, opts);
  var re;

  if (typeof include === 'string') {
    re = toRegex('^(?:' + include + '|' + not + ')', opts);
  } else {
    re = toRegex(not, opts);
  }

  return (cached = re);
};

Version data entries

59 entries across 38 versions & 12 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.18.0 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.18.2 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.16.1 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.15.2 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.18.4 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.18.1 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.14.0 test/dummy/node_modules/expand-brackets/lib/utils.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/expand-brackets/lib/utils.js
tang-0.2.1 spec/tang_app/node_modules/expand-brackets/lib/utils.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/expand-brackets/lib/utils.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/expand-brackets/lib/utils.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/expand-brackets/lib/utils.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/expand-brackets/lib/utils.js
tang-0.2.0 spec/tang_app/node_modules/expand-brackets/lib/utils.js
tang-0.1.0 spec/tang_app/node_modules/expand-brackets/lib/utils.js
tang-0.0.9 spec/tang_app/node_modules/expand-brackets/lib/utils.js
enju_library-0.3.8 spec/dummy/node_modules/expand-brackets/lib/utils.js
ilog-0.4.1 node_modules/readdirp/node_modules/expand-brackets/lib/utils.js