mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-24 05:29:26 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
18 lines
367 B
JavaScript
18 lines
367 B
JavaScript
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: '$' };
|
|
};
|