Sha256: 700c595c67ae4f191aa36ef4df2f5b786527e3aab480755533bf6fc72428f040
Contents?: true
Size: 367 Bytes
Versions: 39
Compression:
Stored size: 367 Bytes
Contents
var types = require('./types'); exports.wordBoundary = function() { return { type: types.POSITION, value: 'b' }; }; exports.nonWordBoundary = function() { return { type: types.POSITION, value: 'B' }; }; exports.begin = function() { return { type: types.POSITION, value: '^' }; }; exports.end = function() { return { type: types.POSITION, value: '$' }; };
Version data entries
39 entries across 38 versions & 12 rubygems