{
  "manifest": {
    "name": "string.prototype.trimstart",
    "version": "1.0.8",
    "author": {
      "name": "Jordan Harband",
      "email": "ljharb@gmail.com"
    },
    "contributors": [
      {
        "name": "Jordan Harband",
        "email": "ljharb@gmail.com"
      },
      {
        "name": "Khaled Al-Ansari",
        "email": "khaledelansari@gmail.com"
      }
    ],
    "funding": {
      "url": "https://github.com/sponsors/ljharb"
    },
    "description": "ES2019 spec-compliant String.prototype.trimStart shim.",
    "license": "MIT",
    "main": "index.js",
    "scripts": {
      "prepack": "npmignore --auto --commentLines=autogenerated",
      "prepublishOnly": "safe-publish-latest",
      "prepublish": "not-in-publish || npm run prepublishOnly",
      "lint": "eslint --ext=js,mjs .",
      "postlint": "es-shim-api --bound",
      "pretest": "npm run lint",
      "test": "npm run tests-only",
      "posttest": "aud --production",
      "tests-only": "nyc tape 'test/**/*.js'",
      "version": "auto-changelog && git add CHANGELOG.md",
      "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
    },
    "repository": {
      "type": "git",
      "url": "git://github.com/es-shims/String.prototype.trimStart.git"
    },
    "keywords": [
      "es6",
      "es7",
      "es8",
      "javascript",
      "prototype",
      "polyfill",
      "utility",
      "trim",
      "trimLeft",
      "trimRight",
      "trimStart",
      "trimEnd",
      "tc39"
    ],
    "devDependencies": {
      "@es-shims/api": "^2.4.2",
      "@ljharb/eslint-config": "^21.1.0",
      "aud": "^2.0.4",
      "auto-changelog": "^2.4.0",
      "eslint": "=8.8.0",
      "functions-have-names": "^1.2.3",
      "has-strict-mode": "^1.0.1",
      "in-publish": "^2.0.1",
      "npmignore": "^0.3.1",
      "nyc": "^10.3.2",
      "safe-publish-latest": "^2.0.0",
      "tape": "^5.7.5"
    },
    "auto-changelog": {
      "output": "CHANGELOG.md",
      "template": "keepachangelog",
      "unreleased": false,
      "commitLimit": false,
      "backfillLimit": false,
      "hideCredit": true
    },
    "dependencies": {
      "call-bind": "^1.0.7",
      "define-properties": "^1.2.1",
      "es-object-atoms": "^1.0.0"
    },
    "publishConfig": {
      "ignore": [
        ".github/workflows"
      ]
    },
    "engines": {
      "node": ">= 0.4"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-string-prototype-trimstart-1.0.8-7ee834dda8c7c17eff3118472bb35bfedaa34dde-integrity/node_modules/string.prototype.trimstart/package.json",
    "readmeFilename": "README.md",
    "readme": "# String.prototype.trimStart <sup>[![Version Badge][npm-version-svg]][package-url]</sup>\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][deps-svg]][deps-url]\n[![dev dependency status][dev-deps-svg]][dev-deps-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nAn ES2019-spec-compliant `String.prototype.trimStart` shim. Invoke its \"shim\" method to shim `String.prototype.trimStart` if it is unavailable.\n\nThis package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://www.ecma-international.org/ecma-262/6.0/#sec-object.assign). In an ES6 environment, it will also work properly with `Symbol`s.\n\nMost common usage:\n```js\nvar trimStart = require('string.prototype.trimstart');\n\nassert(trimStart(' \\t\\na \\t\\n') === 'a \\t\\n');\n\nif (!String.prototype.trimStart) {\n\ttrimStart.shim();\n}\n\nassert(trimStart(' \\t\\na \\t\\n') === ' \\t\\na \\t\\n'.trimStart());\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.com/package/string.prototype.trimstart\n[npm-version-svg]: https://vb.teelaun.ch/es-shims/String.prototype.trimStart.svg\n[deps-svg]: https://david-dm.org/es-shims/String.prototype.trimStart.svg\n[deps-url]: https://david-dm.org/es-shims/String.prototype.trimStart\n[dev-deps-svg]: https://david-dm.org/es-shims/String.prototype.trimStart/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/String.prototype.trimStart#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/string.prototype.trimstart.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/string.prototype.trimstart.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/string.prototype.trimstart.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=string.prototype.trimstart\n[codecov-image]: https://codecov.io/gh/es-shims/String.prototype.trimStart/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/String.prototype.trimStart/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/String.prototype.trimStart\n[actions-url]: https://github.com/es-shims/String.prototype.trimStart/actions\n",
    "licenseText": "MIT License\n\nCopyright (c) 2017 Khaled Al-Ansari\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
    "hash": "7ee834dda8c7c17eff3118472bb35bfedaa34dde",
    "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
    "registry": "npm",
    "packageName": "string.prototype.trimstart",
    "cacheIntegrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== sha1-fug03ajHwX7/MRhHK7Nb/tqjTd4="
  },
  "registry": "npm",
  "hash": "7ee834dda8c7c17eff3118472bb35bfedaa34dde"
}