mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 13:14:44 +00:00
.
This commit is contained in:
parent
a004f0ae58
commit
fc725ba36b
7280 changed files with 19 additions and 1796407 deletions
11
node_modules/jest-regex-util/build/index.d.ts
generated
vendored
11
node_modules/jest-regex-util/build/index.d.ts
generated
vendored
|
@ -1,11 +0,0 @@
|
|||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
export declare const escapePathForRegex: (dir: string) => string;
|
||||
export declare const escapeStrForRegex: (string: string) => string;
|
||||
export declare const replacePathSepForRegex: (string: string) => string;
|
||||
//# sourceMappingURL=index.d.ts.map
|
1
node_modules/jest-regex-util/build/index.d.ts.map
generated
vendored
1
node_modules/jest-regex-util/build/index.d.ts.map
generated
vendored
|
@ -1 +0,0 @@
|
|||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,eAAO,MAAM,kBAAkB,yBAO9B,CAAC;AAEF,eAAO,MAAM,iBAAiB,4BACiB,CAAC;AAEhD,eAAO,MAAM,sBAAsB,4BAQlC,CAAC"}
|
49
node_modules/jest-regex-util/build/index.js
generated
vendored
49
node_modules/jest-regex-util/build/index.js
generated
vendored
|
@ -1,49 +0,0 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true
|
||||
});
|
||||
exports.replacePathSepForRegex = exports.escapeStrForRegex = exports.escapePathForRegex = void 0;
|
||||
|
||||
var _path = _interopRequireDefault(require('path'));
|
||||
|
||||
function _interopRequireDefault(obj) {
|
||||
return obj && obj.__esModule ? obj : {default: obj};
|
||||
}
|
||||
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*
|
||||
*/
|
||||
const escapePathForRegex = dir => {
|
||||
if (_path.default.sep === '\\') {
|
||||
// Replace "\" with "/" so it's not escaped by escapeStrForRegex.
|
||||
// replacePathSepForRegex will convert it back.
|
||||
dir = dir.replace(/\\/g, '/');
|
||||
}
|
||||
|
||||
return replacePathSepForRegex(escapeStrForRegex(dir));
|
||||
};
|
||||
|
||||
exports.escapePathForRegex = escapePathForRegex;
|
||||
|
||||
const escapeStrForRegex = string =>
|
||||
string.replace(/[[\]{}()*+?.\\^$|]/g, '\\$&');
|
||||
|
||||
exports.escapeStrForRegex = escapeStrForRegex;
|
||||
|
||||
const replacePathSepForRegex = string => {
|
||||
if (_path.default.sep === '\\') {
|
||||
return string.replace(
|
||||
/(\/|(.)?\\(?![[\]{}()*+?.^$|\\]))/g,
|
||||
(_match, _, p2) => (p2 && p2 !== '\\' ? p2 + '\\\\' : '\\\\')
|
||||
);
|
||||
}
|
||||
|
||||
return string;
|
||||
};
|
||||
|
||||
exports.replacePathSepForRegex = replacePathSepForRegex;
|
Loading…
Add table
Add a link
Reference in a new issue