homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
6 lines (5 loc) • 297 B
JavaScript
const types = require('./types');
exports.wordBoundary = () => ({ type: types.POSITION, value: 'b' });
exports.nonWordBoundary = () => ({ type: types.POSITION, value: 'B' });
exports.begin = () => ({ type: types.POSITION, value: '^' });
exports.end = () => ({ type: types.POSITION, value: '$' });