Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

Location:
imaps-frontend/node_modules/cross-spawn
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/cross-spawn/README.md

    rd565449 r0c6b92a  
    11# cross-spawn
    22
    3 [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Build status][appveyor-image]][appveyor-url] [![Coverage Status][codecov-image]][codecov-url] [![Dependency status][david-dm-image]][david-dm-url] [![Dev Dependency status][david-dm-dev-image]][david-dm-dev-url]
     3[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Build Status][ci-image]][ci-url] [![Build status][appveyor-image]][appveyor-url]
    44
    55[npm-url]:https://npmjs.org/package/cross-spawn
    66[downloads-image]:https://img.shields.io/npm/dm/cross-spawn.svg
    77[npm-image]:https://img.shields.io/npm/v/cross-spawn.svg
    8 [travis-url]:https://travis-ci.org/moxystudio/node-cross-spawn
    9 [travis-image]:https://img.shields.io/travis/moxystudio/node-cross-spawn/master.svg
     8[ci-url]:https://github.com/moxystudio/node-cross-spawn/actions/workflows/ci.yaml
     9[ci-image]:https://github.com/moxystudio/node-cross-spawn/actions/workflows/ci.yaml/badge.svg
    1010[appveyor-url]:https://ci.appveyor.com/project/satazor/node-cross-spawn
    1111[appveyor-image]:https://img.shields.io/appveyor/ci/satazor/node-cross-spawn/master.svg
    12 [codecov-url]:https://codecov.io/gh/moxystudio/node-cross-spawn
    13 [codecov-image]:https://img.shields.io/codecov/c/github/moxystudio/node-cross-spawn/master.svg
    14 [david-dm-url]:https://david-dm.org/moxystudio/node-cross-spawn
    15 [david-dm-image]:https://img.shields.io/david/moxystudio/node-cross-spawn.svg
    16 [david-dm-dev-url]:https://david-dm.org/moxystudio/node-cross-spawn?type=dev
    17 [david-dm-dev-image]:https://img.shields.io/david/dev/moxystudio/node-cross-spawn.svg
    1812
    1913A cross platform solution to node's spawn and spawnSync.
    20 
    2114
    2215## Installation
  • imaps-frontend/node_modules/cross-spawn/lib/enoent.js

    rd565449 r0c6b92a  
    2525        // See https://github.com/IndigoUnited/node-cross-spawn/issues/16
    2626        if (name === 'exit') {
    27             const err = verifyENOENT(arg1, parsed, 'spawn');
     27            const err = verifyENOENT(arg1, parsed);
    2828
    2929            if (err) {
  • imaps-frontend/node_modules/cross-spawn/lib/util/escape.js

    rd565449 r0c6b92a  
    1616
    1717    // Algorithm below is based on https://qntm.org/cmd
     18    // It's slightly altered to disable JS backtracking to avoid hanging on specially crafted input
     19    // Please see https://github.com/moxystudio/node-cross-spawn/pull/160 for more information
    1820
    1921    // Sequence of backslashes followed by a double quote:
    2022    // double up all the backslashes and escape the double quote
    21     arg = arg.replace(/(\\*)"/g, '$1$1\\"');
     23    arg = arg.replace(/(?=(\\+?)?)\1"/g, '$1$1\\"');
    2224
    2325    // Sequence of backslashes followed by the end of the string
    2426    // (which will become a double quote later):
    2527    // double up all the backslashes
    26     arg = arg.replace(/(\\*)$/, '$1$1');
     28    arg = arg.replace(/(?=(\\+?)?)\1$/, '$1$1');
    2729
    2830    // All other backslashes occur literally
  • imaps-frontend/node_modules/cross-spawn/package.json

    rd565449 r0c6b92a  
    11{
    22  "name": "cross-spawn",
    3   "version": "7.0.3",
     3  "version": "7.0.6",
    44  "description": "Cross platform child_process#spawn and child_process#spawnSync",
    55  "keywords": [
     
    6666    "mkdirp": "^0.5.1",
    6767    "rimraf": "^3.0.0",
    68     "standard-version": "^7.0.0"
     68    "standard-version": "^9.5.0"
    6969  },
    7070  "engines": {
Note: See TracChangeset for help on using the changeset viewer.