mirror of
https://github.com/azure/login.git
synced 2026-06-06 03:17:07 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
87 lines
2 KiB
JavaScript
87 lines
2 KiB
JavaScript
'use strict';
|
|
|
|
var posix = require('posix-character-classes');
|
|
|
|
module.exports = function(brackets) {
|
|
brackets.compiler
|
|
|
|
/**
|
|
* Escaped characters
|
|
*/
|
|
|
|
.set('escape', function(node) {
|
|
return this.emit('\\' + node.val.replace(/^\\/, ''), node);
|
|
})
|
|
|
|
/**
|
|
* Text
|
|
*/
|
|
|
|
.set('text', function(node) {
|
|
return this.emit(node.val.replace(/([{}])/g, '\\$1'), node);
|
|
})
|
|
|
|
/**
|
|
* POSIX character classes
|
|
*/
|
|
|
|
.set('posix', function(node) {
|
|
if (node.val === '[::]') {
|
|
return this.emit('\\[::\\]', node);
|
|
}
|
|
|
|
var val = posix[node.inner];
|
|
if (typeof val === 'undefined') {
|
|
val = '[' + node.inner + ']';
|
|
}
|
|
return this.emit(val, node);
|
|
})
|
|
|
|
/**
|
|
* Non-posix brackets
|
|
*/
|
|
|
|
.set('bracket', function(node) {
|
|
return this.mapVisit(node.nodes);
|
|
})
|
|
.set('bracket.open', function(node) {
|
|
return this.emit(node.val, node);
|
|
})
|
|
.set('bracket.inner', function(node) {
|
|
var inner = node.val;
|
|
|
|
if (inner === '[' || inner === ']') {
|
|
return this.emit('\\' + node.val, node);
|
|
}
|
|
if (inner === '^]') {
|
|
return this.emit('^\\]', node);
|
|
}
|
|
if (inner === '^') {
|
|
return this.emit('^', node);
|
|
}
|
|
|
|
if (/-/.test(inner) && !/(\d-\d|\w-\w)/.test(inner)) {
|
|
inner = inner.split('-').join('\\-');
|
|
}
|
|
|
|
var isNegated = inner.charAt(0) === '^';
|
|
// add slashes to negated brackets, per spec
|
|
if (isNegated && inner.indexOf('/') === -1) {
|
|
inner += '/';
|
|
}
|
|
if (isNegated && inner.indexOf('.') === -1) {
|
|
inner += '.';
|
|
}
|
|
|
|
// don't unescape `0` (octal literal)
|
|
inner = inner.replace(/\\([1-9])/g, '$1');
|
|
return this.emit(inner, node);
|
|
})
|
|
.set('bracket.close', function(node) {
|
|
var val = node.val.replace(/^\\/, '');
|
|
if (node.parent.escaped === true) {
|
|
return this.emit('\\' + val, node);
|
|
}
|
|
return this.emit(val, node);
|
|
});
|
|
};
|