🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
1
node_modules/nlcst-to-string/index.d.ts
generated
vendored
Normal file
1
node_modules/nlcst-to-string/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
export {toString} from './lib/index.js'
|
||||
1
node_modules/nlcst-to-string/index.js
generated
vendored
Normal file
1
node_modules/nlcst-to-string/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
export {toString} from './lib/index.js'
|
||||
23
node_modules/nlcst-to-string/lib/index.d.ts
generated
vendored
Normal file
23
node_modules/nlcst-to-string/lib/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
/**
|
||||
* @typedef {import('nlcst').Content} Content
|
||||
* @typedef {import('nlcst').Root} Root
|
||||
*/
|
||||
/**
|
||||
* Get the text content of a node or list of nodes.
|
||||
*
|
||||
* Prefers the node’s plain-text fields, otherwise serializes its children, and
|
||||
* if the given value is an array, serialize the nodes in it.
|
||||
*
|
||||
* @param {Root | Content | Array<Content>} value
|
||||
* Node or list of nodes to serialize.
|
||||
* @param {string | null | undefined} [separator='']
|
||||
* Separator to use.
|
||||
* @returns {string}
|
||||
* Result.
|
||||
*/
|
||||
export function toString(
|
||||
value: Root | Content | Array<Content>,
|
||||
separator?: string | null | undefined
|
||||
): string
|
||||
export type Content = import('nlcst').Content
|
||||
export type Root = import('nlcst').Root
|
||||
47
node_modules/nlcst-to-string/lib/index.js
generated
vendored
Normal file
47
node_modules/nlcst-to-string/lib/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/**
|
||||
* @typedef {import('nlcst').Content} Content
|
||||
* @typedef {import('nlcst').Root} Root
|
||||
*/
|
||||
|
||||
/**
|
||||
* Get the text content of a node or list of nodes.
|
||||
*
|
||||
* Prefers the node’s plain-text fields, otherwise serializes its children, and
|
||||
* if the given value is an array, serialize the nodes in it.
|
||||
*
|
||||
* @param {Root | Content | Array<Content>} value
|
||||
* Node or list of nodes to serialize.
|
||||
* @param {string | null | undefined} [separator='']
|
||||
* Separator to use.
|
||||
* @returns {string}
|
||||
* Result.
|
||||
*/
|
||||
// To do next major: remove `separator`.
|
||||
export function toString(value, separator) {
|
||||
let index = -1
|
||||
|
||||
if (!value || (!Array.isArray(value) && !value.type)) {
|
||||
throw new Error('Expected node, not `' + value + '`')
|
||||
}
|
||||
|
||||
// @ts-expect-error Looks like a literal.
|
||||
if (typeof value.value === 'string') return value.value
|
||||
|
||||
/** @type {Array<Content|Root>} */
|
||||
// @ts-expect-error Looks like a list of nodes or parent.
|
||||
const children = (Array.isArray(value) ? value : value.children) || []
|
||||
|
||||
// Shortcut: This is pretty common, and a small performance win.
|
||||
if (children.length === 1 && 'value' in children[0]) {
|
||||
return children[0].value
|
||||
}
|
||||
|
||||
/** @type {Array<string>} */
|
||||
const values = []
|
||||
|
||||
while (++index < children.length) {
|
||||
values[index] = toString(children[index], separator)
|
||||
}
|
||||
|
||||
return values.join(separator || '')
|
||||
}
|
||||
22
node_modules/nlcst-to-string/license
generated
vendored
Normal file
22
node_modules/nlcst-to-string/license
generated
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
(The MIT License)
|
||||
|
||||
Copyright (c) 2014 Titus Wormer <tituswormer@gmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
79
node_modules/nlcst-to-string/package.json
generated
vendored
Normal file
79
node_modules/nlcst-to-string/package.json
generated
vendored
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
{
|
||||
"name": "nlcst-to-string",
|
||||
"version": "3.1.1",
|
||||
"description": "nlcst utility to transform a tree to a string",
|
||||
"license": "MIT",
|
||||
"keywords": [
|
||||
"unist",
|
||||
"nlcst",
|
||||
"nlcst-util",
|
||||
"util",
|
||||
"utility",
|
||||
"string",
|
||||
"serialize",
|
||||
"stringify"
|
||||
],
|
||||
"repository": "syntax-tree/nlcst-to-string",
|
||||
"bugs": "https://github.com/syntax-tree/nlcst-to-string/issues",
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/unified"
|
||||
},
|
||||
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
||||
"contributors": [
|
||||
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
|
||||
"Kenichiro Murata <kenichiro.murata@gmail.com>"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"main": "index.js",
|
||||
"types": "index.d.ts",
|
||||
"files": [
|
||||
"lib/",
|
||||
"index.d.ts",
|
||||
"index.js"
|
||||
],
|
||||
"dependencies": {
|
||||
"@types/nlcst": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.0.0",
|
||||
"c8": "^7.0.0",
|
||||
"prettier": "^2.0.0",
|
||||
"remark-cli": "^11.0.0",
|
||||
"remark-preset-wooorm": "^9.0.0",
|
||||
"type-coverage": "^2.0.0",
|
||||
"typescript": "^4.0.0",
|
||||
"unist-builder": "^3.0.0",
|
||||
"xo": "^0.53.0"
|
||||
},
|
||||
"scripts": {
|
||||
"prepack": "npm run build && npm run format",
|
||||
"build": "tsc --build --clean && tsc --build && type-coverage",
|
||||
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
|
||||
"test-api": "node --conditions development test.js",
|
||||
"test-coverage": "c8 --check-coverage --100 --reporter lcov npm run test-api",
|
||||
"test": "npm run build && npm run format && npm run test-coverage"
|
||||
},
|
||||
"prettier": {
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"singleQuote": true,
|
||||
"bracketSpacing": false,
|
||||
"semi": false,
|
||||
"trailingComma": "none"
|
||||
},
|
||||
"xo": {
|
||||
"prettier": true
|
||||
},
|
||||
"remarkConfig": {
|
||||
"plugins": [
|
||||
"preset-wooorm"
|
||||
]
|
||||
},
|
||||
"typeCoverage": {
|
||||
"atLeast": 100,
|
||||
"detail": true,
|
||||
"strict": true
|
||||
}
|
||||
}
|
||||
176
node_modules/nlcst-to-string/readme.md
generated
vendored
Normal file
176
node_modules/nlcst-to-string/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,176 @@
|
|||
# nlcst-to-string
|
||||
|
||||
[![Build][build-badge]][build]
|
||||
[![Coverage][coverage-badge]][coverage]
|
||||
[![Downloads][downloads-badge]][downloads]
|
||||
[![Size][size-badge]][size]
|
||||
[![Sponsors][sponsors-badge]][collective]
|
||||
[![Backers][backers-badge]][collective]
|
||||
[![Chat][chat-badge]][chat]
|
||||
|
||||
[nlcst][] utility to serialize a node.
|
||||
|
||||
## Contents
|
||||
|
||||
* [What is this?](#what-is-this)
|
||||
* [When should I use this?](#when-should-i-use-this)
|
||||
* [Install](#install)
|
||||
* [Use](#use)
|
||||
* [API](#api)
|
||||
* [`toString(value[, separator])`](#tostringvalue-separator)
|
||||
* [Types](#types)
|
||||
* [Compatibility](#compatibility)
|
||||
* [Contribute](#contribute)
|
||||
* [License](#license)
|
||||
|
||||
## What is this?
|
||||
|
||||
This package is a utility that takes [nlcst][] nodes and gets their plain-text
|
||||
value.
|
||||
|
||||
## When should I use this?
|
||||
|
||||
This is a small utility that is useful when you’re dealing with ASTs.
|
||||
|
||||
## Install
|
||||
|
||||
This package is [ESM only][esm].
|
||||
In Node.js (version 14.14+ and 16.0+), install with [npm][]:
|
||||
|
||||
```sh
|
||||
npm install nlcst-to-string
|
||||
```
|
||||
|
||||
In Deno with [`esm.sh`][esmsh]:
|
||||
|
||||
```js
|
||||
import {toString} from 'https://esm.sh/nlcst-to-string@3'
|
||||
```
|
||||
|
||||
In browsers with [`esm.sh`][esmsh]:
|
||||
|
||||
```html
|
||||
<script type="module">
|
||||
import {toString} from 'https://esm.sh/nlcst-to-string@3?bundle'
|
||||
</script>
|
||||
```
|
||||
|
||||
## Use
|
||||
|
||||
```js
|
||||
import {toString} from 'nlcst-to-string'
|
||||
|
||||
console.log(
|
||||
toString({
|
||||
type: 'WordNode',
|
||||
children: [
|
||||
{type: 'TextNode', value: 'AT'},
|
||||
{type: 'PunctuationNode', value: '&'},
|
||||
{type: 'TextNode', value: 'T'}
|
||||
]
|
||||
})
|
||||
) // => 'AT&T'
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
This package exports the identifier [`toString`][tostring].
|
||||
There is no default export.
|
||||
|
||||
### `toString(value[, separator])`
|
||||
|
||||
Get the text content of a node or list of nodes.
|
||||
|
||||
Prefers the node’s plain-text fields, otherwise serializes its children, and
|
||||
if the given value is an array, serialize the nodes in it.
|
||||
|
||||
###### Parameters
|
||||
|
||||
* `node` ([`Node`][node] or `Array<Node>`)
|
||||
— node to serialize.
|
||||
* `separator` (`string`, default: `''`)
|
||||
— value to delimit each item
|
||||
|
||||
###### Returns
|
||||
|
||||
Result (`string`).
|
||||
|
||||
## Types
|
||||
|
||||
This package is fully typed with [TypeScript][].
|
||||
It exports no additional types.
|
||||
|
||||
## Compatibility
|
||||
|
||||
Projects maintained by the unified collective are compatible with all maintained
|
||||
versions of Node.js.
|
||||
As of now, that is Node.js 14.14+ and 16.0+.
|
||||
Our projects sometimes work with older versions, but this is not guaranteed.
|
||||
|
||||
## Contribute
|
||||
|
||||
See [`contributing.md`][contributing] in [`syntax-tree/.github`][health] for
|
||||
ways to get started.
|
||||
See [`support.md`][support] for ways to get help.
|
||||
|
||||
This project has a [code of conduct][coc].
|
||||
By interacting with this repository, organization, or community you agree to
|
||||
abide by its terms.
|
||||
|
||||
## License
|
||||
|
||||
[MIT][license] © [Titus Wormer][author]
|
||||
|
||||
<!-- Definitions -->
|
||||
|
||||
[build-badge]: https://github.com/syntax-tree/nlcst-to-string/workflows/main/badge.svg
|
||||
|
||||
[build]: https://github.com/syntax-tree/nlcst-to-string/actions
|
||||
|
||||
[coverage-badge]: https://img.shields.io/codecov/c/github/syntax-tree/nlcst-to-string.svg
|
||||
|
||||
[coverage]: https://codecov.io/github/syntax-tree/nlcst-to-string
|
||||
|
||||
[downloads-badge]: https://img.shields.io/npm/dm/nlcst-to-string.svg
|
||||
|
||||
[downloads]: https://www.npmjs.com/package/nlcst-to-string
|
||||
|
||||
[size-badge]: https://img.shields.io/bundlephobia/minzip/nlcst-to-string.svg
|
||||
|
||||
[size]: https://bundlephobia.com/result?p=nlcst-to-string
|
||||
|
||||
[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg
|
||||
|
||||
[backers-badge]: https://opencollective.com/unified/backers/badge.svg
|
||||
|
||||
[collective]: https://opencollective.com/unified
|
||||
|
||||
[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg
|
||||
|
||||
[chat]: https://github.com/syntax-tree/unist/discussions
|
||||
|
||||
[npm]: https://docs.npmjs.com/cli/install
|
||||
|
||||
[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
|
||||
|
||||
[esmsh]: https://esm.sh
|
||||
|
||||
[typescript]: https://www.typescriptlang.org
|
||||
|
||||
[license]: license
|
||||
|
||||
[author]: https://wooorm.com
|
||||
|
||||
[health]: https://github.com/syntax-tree/.github
|
||||
|
||||
[contributing]: https://github.com/syntax-tree/.github/blob/main/contributing.md
|
||||
|
||||
[support]: https://github.com/syntax-tree/.github/blob/main/support.md
|
||||
|
||||
[coc]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md
|
||||
|
||||
[nlcst]: https://github.com/syntax-tree/nlcst
|
||||
|
||||
[node]: https://github.com/syntax-tree/nlcst#nodes
|
||||
|
||||
[tostring]: #tostringvalue-separator
|
||||
Loading…
Add table
Add a link
Reference in a new issue