init
This commit is contained in:
21
mc_test/node_modules/stylis/LICENSE
generated
vendored
Executable file
21
mc_test/node_modules/stylis/LICENSE
generated
vendored
Executable file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2016-present Sultan Tarimo
|
||||
|
||||
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.
|
||||
161
mc_test/node_modules/stylis/README.md
generated
vendored
Executable file
161
mc_test/node_modules/stylis/README.md
generated
vendored
Executable file
@ -0,0 +1,161 @@
|
||||
# STYLIS
|
||||
|
||||
[](https://github.com/thysultan/stylis.js)
|
||||
|
||||
A Light–weight CSS Preprocessor.
|
||||
|
||||
[](https://coveralls.io/github/thysultan/stylis.js)
|
||||
[](https://bundlephobia.com/result?p=stylis)
|
||||
[](https://github.com/thysultan/stylis.js/blob/master/LICENSE)
|
||||
[](https://www.npmjs.com/package/stylis)
|
||||
|
||||
## Installation
|
||||
|
||||
* Use a Direct Download: `<script src=stylis.js></script>`
|
||||
* Use a CDN: `<script src=unpkg.com/stylis></script>`
|
||||
* Use NPM: `npm install stylis --save`
|
||||
|
||||
## Features
|
||||
|
||||
- nesting `a { &:hover {} }`
|
||||
- selector namespacing
|
||||
- vendor prefixing (flex-box, etc...)
|
||||
- minification
|
||||
- esm module compatible
|
||||
- tree-shaking-able
|
||||
|
||||
## Abstract Syntax Structure
|
||||
|
||||
```js
|
||||
const declaration = {
|
||||
value: 'color:red;',
|
||||
type: 'decl',
|
||||
props: 'color',
|
||||
children: 'red',
|
||||
line: 1, column: 1
|
||||
}
|
||||
|
||||
const comment = {
|
||||
value: '/*@noflip*/',
|
||||
type: 'comm',
|
||||
props: '/',
|
||||
children: '@noflip',
|
||||
line: 1, column: 1
|
||||
}
|
||||
|
||||
const ruleset = {
|
||||
value: 'h1,h2',
|
||||
type: 'rule',
|
||||
props: ['h1', 'h2'],
|
||||
children: [/* ... */],
|
||||
line: 1, column: 1
|
||||
}
|
||||
|
||||
const atruleset = {
|
||||
value: '@media (max-width:100), (min-width:100)',
|
||||
type: '@media',
|
||||
props: ['(max-width:100)', '(min-width:100)'],
|
||||
children: [/* ... */],
|
||||
line: 1, column: 1
|
||||
}
|
||||
```
|
||||
|
||||
## Example:
|
||||
|
||||
```js
|
||||
import {compile, serialize, stringify} from 'stylis'
|
||||
|
||||
serialize(compile(`h1{all:unset}`), stringify)
|
||||
```
|
||||
|
||||
### Compile
|
||||
|
||||
```js
|
||||
compile('h1{all:unset}') === [{value: 'h1', type: 'rule', props: ['h1'], children: [/* ... */]}]
|
||||
compile('--foo:unset;') === [{value: '--foo:unset;', type: 'decl', props: '--foo', children: 'unset'}]
|
||||
```
|
||||
|
||||
### Tokenize
|
||||
|
||||
```js
|
||||
tokenize('h1 h2 h3 [h4 h5] fn(args) "a b c"') === ['h1', 'h2', 'h3', '[h4 h5]', 'fn', '(args)', '"a b c"']
|
||||
```
|
||||
|
||||
### Serialize
|
||||
|
||||
```js
|
||||
serialize(compile('h1{all:unset}'), stringify)
|
||||
```
|
||||
|
||||
### Vendor Prefixing
|
||||
|
||||
```js
|
||||
import {compile, serialize, stringify, middleware, prefixer } from 'stylis';
|
||||
|
||||
serialize(compile('div{display:flex;}'), middleware([prefixer, stringify]))
|
||||
```
|
||||
|
||||
|
||||
## Middleware
|
||||
|
||||
The middleware helper is a convenient helper utility, that for all intents and purposes you can do without if you intend to implement your own traversal logic. The `stringify` middleware is one such middleware that can be used in conjunction with it.
|
||||
|
||||
Elements passed to middlewares have a `root` property that is the immediate root/parent of the current element **in the compiled output**, so it references the parent in the already expanded CSS-like structure. Elements have also `parent` property that is the immediate parent of the current element **from the input structure** (structure representing the input string).
|
||||
|
||||
### Traversal
|
||||
|
||||
```js
|
||||
serialize(compile('h1{all:unset}'), middleware([(element, index, children) => {
|
||||
assert(children === element.root.children && children[index] === element.children)
|
||||
}, stringify])) === 'h1{all:unset;}'
|
||||
```
|
||||
|
||||
The abstract syntax tree also includes an additional `return` property for more niche uses.
|
||||
|
||||
### Prefixing
|
||||
|
||||
```js
|
||||
serialize(compile('h1{all:unset}'), middleware([(element, index, children, callback) => {
|
||||
if (element.type === 'decl' && element.props === 'all' && element.children === 'unset')
|
||||
element.return = 'color:red;' + element.value
|
||||
}, stringify])) === 'h1{color:red;all:unset;}'
|
||||
```
|
||||
|
||||
```js
|
||||
serialize(compile('h1{all:unset}'), middleware([(element, index, children, callback) => {
|
||||
if (element.type === 'rule' && element.props.indexOf('h1') > -1)
|
||||
return serialize([{...element, props: ['h2', 'h3']}], callback)
|
||||
}, stringify])) === 'h2,h3{all:unset;}h1{all:unset;}'
|
||||
```
|
||||
|
||||
### Reading
|
||||
|
||||
```js
|
||||
serialize(compile('h1{all:unset}'), middleware([stringify, (element, index, children) => {
|
||||
assert(element.return === 'h1{all:unset;}')
|
||||
}])) === 'h1{all:unset;color:red;}'
|
||||
```
|
||||
|
||||
The middlewares in [src/Middleware.js](src/Middleware.js) dive into tangible examples of how you might implement a middleware, alternatively you could also create your own middleware system as `compile` returns all the nessessary structure to fork from.
|
||||
|
||||
## Variables
|
||||
|
||||
CSS variables are supported but a note should be made about the exotic use of css variables. The css spec mentions the following
|
||||
|
||||
>The allowed syntax for custom properties is extremely permissive. The <declaration-value> production matches any sequence of one or more tokens, so long as the sequence does not contain <bad-string-token>, <bad-url-token>, unmatched <)-token>, <]-token>, or <}-token>, or top-level <semicolon-token> tokens or <delim-token> tokens with a value of "!".
|
||||
|
||||
That is to say css variables according to the spec allows: `--foo: if(x > 5) this.width = 10;` and while this value is obviously useless as a variable, and would be invalid in any normal property, it still might be read and acted on by JavaScript and this is supported by Stylis, however things become slightly undefined when we start to include the `{` and `}` productions in our use of exotic css variables.
|
||||
|
||||
For example consider the following: `--foo: {};`
|
||||
|
||||
While this is valid CSS and supported. It is unclear what should happen when the rule collides with the implicit block termination rule that allows i.e `h1{color:red}`(notice the omitted semicolon) to also be a valid CSS production. This results in the following contradiction in: `h1{--example: {}` is it to be treated as `h1{--foo:{;}` or `h1{--foo:{}` the later of which is an unterminated block or in the following: `h1{--foo:{} h1{color:red;}` should it be `h1 {--foo:{}h1{color:red;};` where `{}h1{color:red;` is part of the css variable `--foo` and not a new rule or should it be something else?
|
||||
|
||||
Nevertheless Stylis still supports the exotic forms highlighted in the spec, however you should consider it as a general rule to delimit such exotic uses of variables in strings or parentheses i.e: `h1{--foo:'{'}` or `h1{--foo:({)}`.
|
||||
|
||||
## Benchmark
|
||||
|
||||
Stylis is at-least 2X faster than its predecesor.
|
||||
|
||||
### License
|
||||
|
||||
Stylis is [MIT licensed](./LICENSE).
|
||||
2
mc_test/node_modules/stylis/dist/stylis.mjs
generated
vendored
Executable file
2
mc_test/node_modules/stylis/dist/stylis.mjs
generated
vendored
Executable file
File diff suppressed because one or more lines are too long
1
mc_test/node_modules/stylis/dist/stylis.mjs.map
generated
vendored
Executable file
1
mc_test/node_modules/stylis/dist/stylis.mjs.map
generated
vendored
Executable file
File diff suppressed because one or more lines are too long
1
mc_test/node_modules/stylis/dist/umd/package.json
generated
vendored
Executable file
1
mc_test/node_modules/stylis/dist/umd/package.json
generated
vendored
Executable file
@ -0,0 +1 @@
|
||||
{ "type": "commonjs" }
|
||||
2
mc_test/node_modules/stylis/dist/umd/stylis.js
generated
vendored
Executable file
2
mc_test/node_modules/stylis/dist/umd/stylis.js
generated
vendored
Executable file
File diff suppressed because one or more lines are too long
1
mc_test/node_modules/stylis/dist/umd/stylis.js.map
generated
vendored
Executable file
1
mc_test/node_modules/stylis/dist/umd/stylis.js.map
generated
vendored
Executable file
File diff suppressed because one or more lines are too long
7
mc_test/node_modules/stylis/index.js
generated
vendored
Executable file
7
mc_test/node_modules/stylis/index.js
generated
vendored
Executable file
@ -0,0 +1,7 @@
|
||||
export * from './src/Enum.js'
|
||||
export * from './src/Utility.js'
|
||||
export * from './src/Parser.js'
|
||||
export * from './src/Prefixer.js'
|
||||
export * from './src/Tokenizer.js'
|
||||
export * from './src/Serializer.js'
|
||||
export * from './src/Middleware.js'
|
||||
167
mc_test/node_modules/stylis/package.json
generated
vendored
Executable file
167
mc_test/node_modules/stylis/package.json
generated
vendored
Executable file
@ -0,0 +1,167 @@
|
||||
{
|
||||
"name": "stylis",
|
||||
"version": "4.2.0",
|
||||
"license": "MIT",
|
||||
"description": "A Light–weight CSS Preprocessor",
|
||||
"homepage": "https://github.com/thysultan/stylis.js",
|
||||
"author": "Sultan Tarimo <sultantarimo@me.com>",
|
||||
"repository": "https://github.com/thysultan/stylis.js",
|
||||
"bugs": "https://github.com/thysultan/stylis.js/issues",
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"main": "dist/umd/stylis.js",
|
||||
"module": "dist/stylis.mjs",
|
||||
"react-native": "./index.js",
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.js",
|
||||
"require": "./dist/umd/stylis.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"dist/",
|
||||
"src/"
|
||||
],
|
||||
"scripts": {
|
||||
"lint": "eslint ./",
|
||||
"pretest": "npm run lint && npm run build",
|
||||
"test": "nyc npm run spec",
|
||||
"spec": "mocha --harmony --require esm script/setup.js --recursive test",
|
||||
"prebuild": "rimraf dist",
|
||||
"build": "rollup --config script/build.js --configSrc ./",
|
||||
"start": "npm run build -- --watch",
|
||||
"prepare": "npm run build",
|
||||
"postversion": "git push --follow-tags && npm publish",
|
||||
"release-major": "npm version major -m '%s'",
|
||||
"release-minor": "npm version minor -m '%s'",
|
||||
"release-patch": "npm version patch -m '%s'"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "4.3.4",
|
||||
"eslint": "6.8.0",
|
||||
"esm": "3.2.25",
|
||||
"mocha": "9.1.1",
|
||||
"nyc": "15.1.0",
|
||||
"rimraf": "3.0.2",
|
||||
"rollup": "1.28.0",
|
||||
"rollup-plugin-size": "0.2.1",
|
||||
"rollup-plugin-terser": "5.1.3",
|
||||
"stylis": "./"
|
||||
},
|
||||
"nyc": {
|
||||
"temp-dir": "./coverage/.nyc_output",
|
||||
"exclude": [
|
||||
"**/dist/",
|
||||
"**/test/",
|
||||
"**/script/"
|
||||
],
|
||||
"reporter": [
|
||||
"lcov",
|
||||
"text"
|
||||
]
|
||||
},
|
||||
"esm": {
|
||||
"cjs": true,
|
||||
"cache": false
|
||||
},
|
||||
"eslintIgnore": [
|
||||
"script/",
|
||||
"test/",
|
||||
"dist/",
|
||||
"docs/"
|
||||
],
|
||||
"eslintConfig": {
|
||||
"env": {
|
||||
"commonjs": true,
|
||||
"browser": true,
|
||||
"node": true,
|
||||
"es6": true
|
||||
},
|
||||
"extends": "eslint:recommended",
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 7,
|
||||
"sourceType": "module",
|
||||
"ecmaFeatures": {
|
||||
"impliedStrict": true
|
||||
}
|
||||
},
|
||||
"rules": {
|
||||
"indent": [
|
||||
"error",
|
||||
"tab",
|
||||
{
|
||||
"SwitchCase": 1
|
||||
}
|
||||
],
|
||||
"linebreak-style": [
|
||||
"error",
|
||||
"unix"
|
||||
],
|
||||
"quotes": [
|
||||
"error",
|
||||
"single"
|
||||
],
|
||||
"semi": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"no-cond-assign": [
|
||||
"off"
|
||||
],
|
||||
"no-redeclare": [
|
||||
"off"
|
||||
],
|
||||
"no-fallthrough": [
|
||||
"off"
|
||||
],
|
||||
"no-console": [
|
||||
"off"
|
||||
],
|
||||
"no-unsafe-finally": [
|
||||
"off"
|
||||
],
|
||||
"no-shadow-restricted-names": [
|
||||
"error"
|
||||
],
|
||||
"no-whitespace-before-property": [
|
||||
"error"
|
||||
],
|
||||
"no-else-return": [
|
||||
"error"
|
||||
],
|
||||
"eol-last": [
|
||||
"error"
|
||||
],
|
||||
"func-call-spacing": [
|
||||
"error",
|
||||
"never"
|
||||
],
|
||||
"brace-style": [
|
||||
"error",
|
||||
"1tbs",
|
||||
{
|
||||
"allowSingleLine": true
|
||||
}
|
||||
],
|
||||
"require-jsdoc": [
|
||||
"error",
|
||||
{
|
||||
"require": {
|
||||
"FunctionDeclaration": true
|
||||
}
|
||||
}
|
||||
],
|
||||
"no-trailing-spaces": [
|
||||
"error",
|
||||
{
|
||||
"skipBlankLines": true
|
||||
}
|
||||
],
|
||||
"no-constant-condition": [
|
||||
"off"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
21
mc_test/node_modules/stylis/src/Enum.js
generated
vendored
Executable file
21
mc_test/node_modules/stylis/src/Enum.js
generated
vendored
Executable file
@ -0,0 +1,21 @@
|
||||
export var MS = '-ms-'
|
||||
export var MOZ = '-moz-'
|
||||
export var WEBKIT = '-webkit-'
|
||||
|
||||
export var COMMENT = 'comm'
|
||||
export var RULESET = 'rule'
|
||||
export var DECLARATION = 'decl'
|
||||
|
||||
export var PAGE = '@page'
|
||||
export var MEDIA = '@media'
|
||||
export var IMPORT = '@import'
|
||||
export var CHARSET = '@charset'
|
||||
export var VIEWPORT = '@viewport'
|
||||
export var SUPPORTS = '@supports'
|
||||
export var DOCUMENT = '@document'
|
||||
export var NAMESPACE = '@namespace'
|
||||
export var KEYFRAMES = '@keyframes'
|
||||
export var FONT_FACE = '@font-face'
|
||||
export var COUNTER_STYLE = '@counter-style'
|
||||
export var FONT_FEATURE_VALUES = '@font-feature-values'
|
||||
export var LAYER = '@layer'
|
||||
108
mc_test/node_modules/stylis/src/Middleware.js
generated
vendored
Executable file
108
mc_test/node_modules/stylis/src/Middleware.js
generated
vendored
Executable file
@ -0,0 +1,108 @@
|
||||
import {MS, MOZ, WEBKIT, RULESET, KEYFRAMES, DECLARATION} from './Enum.js'
|
||||
import {match, charat, substr, strlen, sizeof, replace, combine} from './Utility.js'
|
||||
import {copy, tokenize} from './Tokenizer.js'
|
||||
import {serialize} from './Serializer.js'
|
||||
import {prefix} from './Prefixer.js'
|
||||
|
||||
/**
|
||||
* @param {function[]} collection
|
||||
* @return {function}
|
||||
*/
|
||||
export function middleware (collection) {
|
||||
var length = sizeof(collection)
|
||||
|
||||
return function (element, index, children, callback) {
|
||||
var output = ''
|
||||
|
||||
for (var i = 0; i < length; i++)
|
||||
output += collection[i](element, index, children, callback) || ''
|
||||
|
||||
return output
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {function} callback
|
||||
* @return {function}
|
||||
*/
|
||||
export function rulesheet (callback) {
|
||||
return function (element) {
|
||||
if (!element.root)
|
||||
if (element = element.return)
|
||||
callback(element)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {object} element
|
||||
* @param {number} index
|
||||
* @param {object[]} children
|
||||
* @param {function} callback
|
||||
*/
|
||||
export function prefixer (element, index, children, callback) {
|
||||
if (element.length > -1)
|
||||
if (!element.return)
|
||||
switch (element.type) {
|
||||
case DECLARATION: element.return = prefix(element.value, element.length, children)
|
||||
return
|
||||
case KEYFRAMES:
|
||||
return serialize([copy(element, {value: replace(element.value, '@', '@' + WEBKIT)})], callback)
|
||||
case RULESET:
|
||||
if (element.length)
|
||||
return combine(element.props, function (value) {
|
||||
switch (match(value, /(::plac\w+|:read-\w+)/)) {
|
||||
// :read-(only|write)
|
||||
case ':read-only': case ':read-write':
|
||||
return serialize([copy(element, {props: [replace(value, /:(read-\w+)/, ':' + MOZ + '$1')]})], callback)
|
||||
// :placeholder
|
||||
case '::placeholder':
|
||||
return serialize([
|
||||
copy(element, {props: [replace(value, /:(plac\w+)/, ':' + WEBKIT + 'input-$1')]}),
|
||||
copy(element, {props: [replace(value, /:(plac\w+)/, ':' + MOZ + '$1')]}),
|
||||
copy(element, {props: [replace(value, /:(plac\w+)/, MS + 'input-$1')]})
|
||||
], callback)
|
||||
}
|
||||
|
||||
return ''
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {object} element
|
||||
* @param {number} index
|
||||
* @param {object[]} children
|
||||
*/
|
||||
export function namespace (element) {
|
||||
switch (element.type) {
|
||||
case RULESET:
|
||||
element.props = element.props.map(function (value) {
|
||||
return combine(tokenize(value), function (value, index, children) {
|
||||
switch (charat(value, 0)) {
|
||||
// \f
|
||||
case 12:
|
||||
return substr(value, 1, strlen(value))
|
||||
// \0 ( + > ~
|
||||
case 0: case 40: case 43: case 62: case 126:
|
||||
return value
|
||||
// :
|
||||
case 58:
|
||||
if (children[++index] === 'global')
|
||||
children[index] = '', children[++index] = '\f' + substr(children[index], index = 1, -1)
|
||||
// \s
|
||||
case 32:
|
||||
return index === 1 ? '' : value
|
||||
default:
|
||||
switch (index) {
|
||||
case 0: element = value
|
||||
return sizeof(children) > 1 ? '' : value
|
||||
case index = sizeof(children) - 1: case 2:
|
||||
return index === 2 ? value + element + element : value + element
|
||||
default:
|
||||
return value
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
191
mc_test/node_modules/stylis/src/Parser.js
generated
vendored
Executable file
191
mc_test/node_modules/stylis/src/Parser.js
generated
vendored
Executable file
@ -0,0 +1,191 @@
|
||||
import {COMMENT, RULESET, DECLARATION} from './Enum.js'
|
||||
import {abs, charat, trim, from, sizeof, strlen, substr, append, replace, indexof} from './Utility.js'
|
||||
import {node, char, prev, next, peek, caret, alloc, dealloc, delimit, whitespace, escaping, identifier, commenter} from './Tokenizer.js'
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {object[]}
|
||||
*/
|
||||
export function compile (value) {
|
||||
return dealloc(parse('', null, null, null, [''], value = alloc(value), 0, [0], value))
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {object} root
|
||||
* @param {object?} parent
|
||||
* @param {string[]} rule
|
||||
* @param {string[]} rules
|
||||
* @param {string[]} rulesets
|
||||
* @param {number[]} pseudo
|
||||
* @param {number[]} points
|
||||
* @param {string[]} declarations
|
||||
* @return {object}
|
||||
*/
|
||||
export function parse (value, root, parent, rule, rules, rulesets, pseudo, points, declarations) {
|
||||
var index = 0
|
||||
var offset = 0
|
||||
var length = pseudo
|
||||
var atrule = 0
|
||||
var property = 0
|
||||
var previous = 0
|
||||
var variable = 1
|
||||
var scanning = 1
|
||||
var ampersand = 1
|
||||
var character = 0
|
||||
var type = ''
|
||||
var props = rules
|
||||
var children = rulesets
|
||||
var reference = rule
|
||||
var characters = type
|
||||
|
||||
while (scanning)
|
||||
switch (previous = character, character = next()) {
|
||||
// (
|
||||
case 40:
|
||||
if (previous != 108 && charat(characters, length - 1) == 58) {
|
||||
if (indexof(characters += replace(delimit(character), '&', '&\f'), '&\f') != -1)
|
||||
ampersand = -1
|
||||
break
|
||||
}
|
||||
// " ' [
|
||||
case 34: case 39: case 91:
|
||||
characters += delimit(character)
|
||||
break
|
||||
// \t \n \r \s
|
||||
case 9: case 10: case 13: case 32:
|
||||
characters += whitespace(previous)
|
||||
break
|
||||
// \
|
||||
case 92:
|
||||
characters += escaping(caret() - 1, 7)
|
||||
continue
|
||||
// /
|
||||
case 47:
|
||||
switch (peek()) {
|
||||
case 42: case 47:
|
||||
append(comment(commenter(next(), caret()), root, parent), declarations)
|
||||
break
|
||||
default:
|
||||
characters += '/'
|
||||
}
|
||||
break
|
||||
// {
|
||||
case 123 * variable:
|
||||
points[index++] = strlen(characters) * ampersand
|
||||
// } ; \0
|
||||
case 125 * variable: case 59: case 0:
|
||||
switch (character) {
|
||||
// \0 }
|
||||
case 0: case 125: scanning = 0
|
||||
// ;
|
||||
case 59 + offset: if (ampersand == -1) characters = replace(characters, /\f/g, '')
|
||||
if (property > 0 && (strlen(characters) - length))
|
||||
append(property > 32 ? declaration(characters + ';', rule, parent, length - 1) : declaration(replace(characters, ' ', '') + ';', rule, parent, length - 2), declarations)
|
||||
break
|
||||
// @ ;
|
||||
case 59: characters += ';'
|
||||
// { rule/at-rule
|
||||
default:
|
||||
append(reference = ruleset(characters, root, parent, index, offset, rules, points, type, props = [], children = [], length), rulesets)
|
||||
|
||||
if (character === 123)
|
||||
if (offset === 0)
|
||||
parse(characters, root, reference, reference, props, rulesets, length, points, children)
|
||||
else
|
||||
switch (atrule === 99 && charat(characters, 3) === 110 ? 100 : atrule) {
|
||||
// d l m s
|
||||
case 100: case 108: case 109: case 115:
|
||||
parse(value, reference, reference, rule && append(ruleset(value, reference, reference, 0, 0, rules, points, type, rules, props = [], length), children), rules, children, length, points, rule ? props : children)
|
||||
break
|
||||
default:
|
||||
parse(characters, reference, reference, reference, [''], children, 0, points, children)
|
||||
}
|
||||
}
|
||||
|
||||
index = offset = property = 0, variable = ampersand = 1, type = characters = '', length = pseudo
|
||||
break
|
||||
// :
|
||||
case 58:
|
||||
length = 1 + strlen(characters), property = previous
|
||||
default:
|
||||
if (variable < 1)
|
||||
if (character == 123)
|
||||
--variable
|
||||
else if (character == 125 && variable++ == 0 && prev() == 125)
|
||||
continue
|
||||
|
||||
switch (characters += from(character), character * variable) {
|
||||
// &
|
||||
case 38:
|
||||
ampersand = offset > 0 ? 1 : (characters += '\f', -1)
|
||||
break
|
||||
// ,
|
||||
case 44:
|
||||
points[index++] = (strlen(characters) - 1) * ampersand, ampersand = 1
|
||||
break
|
||||
// @
|
||||
case 64:
|
||||
// -
|
||||
if (peek() === 45)
|
||||
characters += delimit(next())
|
||||
|
||||
atrule = peek(), offset = length = strlen(type = characters += identifier(caret())), character++
|
||||
break
|
||||
// -
|
||||
case 45:
|
||||
if (previous === 45 && strlen(characters) == 2)
|
||||
variable = 0
|
||||
}
|
||||
}
|
||||
|
||||
return rulesets
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {object} root
|
||||
* @param {object?} parent
|
||||
* @param {number} index
|
||||
* @param {number} offset
|
||||
* @param {string[]} rules
|
||||
* @param {number[]} points
|
||||
* @param {string} type
|
||||
* @param {string[]} props
|
||||
* @param {string[]} children
|
||||
* @param {number} length
|
||||
* @return {object}
|
||||
*/
|
||||
export function ruleset (value, root, parent, index, offset, rules, points, type, props, children, length) {
|
||||
var post = offset - 1
|
||||
var rule = offset === 0 ? rules : ['']
|
||||
var size = sizeof(rule)
|
||||
|
||||
for (var i = 0, j = 0, k = 0; i < index; ++i)
|
||||
for (var x = 0, y = substr(value, post + 1, post = abs(j = points[i])), z = value; x < size; ++x)
|
||||
if (z = trim(j > 0 ? rule[x] + ' ' + y : replace(y, /&\f/g, rule[x])))
|
||||
props[k++] = z
|
||||
|
||||
return node(value, root, parent, offset === 0 ? RULESET : type, props, children, length)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} value
|
||||
* @param {object} root
|
||||
* @param {object?} parent
|
||||
* @return {object}
|
||||
*/
|
||||
export function comment (value, root, parent) {
|
||||
return node(value, root, parent, COMMENT, from(char()), substr(value, 2, -2), 0)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {object} root
|
||||
* @param {object?} parent
|
||||
* @param {number} length
|
||||
* @return {object}
|
||||
*/
|
||||
export function declaration (value, root, parent, length) {
|
||||
return node(value, root, parent, DECLARATION, substr(value, 0, length), substr(value, length + 1, -1), length)
|
||||
}
|
||||
145
mc_test/node_modules/stylis/src/Prefixer.js
generated
vendored
Executable file
145
mc_test/node_modules/stylis/src/Prefixer.js
generated
vendored
Executable file
@ -0,0 +1,145 @@
|
||||
import {MS, MOZ, WEBKIT} from './Enum.js'
|
||||
import {hash, charat, strlen, indexof, replace, substr, match} from './Utility.js'
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {number} length
|
||||
* @param {object[]} children
|
||||
* @return {string}
|
||||
*/
|
||||
export function prefix (value, length, children) {
|
||||
switch (hash(value, length)) {
|
||||
// color-adjust
|
||||
case 5103:
|
||||
return WEBKIT + 'print-' + value + value
|
||||
// animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function)
|
||||
case 5737: case 4201: case 3177: case 3433: case 1641: case 4457: case 2921:
|
||||
// text-decoration, filter, clip-path, backface-visibility, column, box-decoration-break
|
||||
case 5572: case 6356: case 5844: case 3191: case 6645: case 3005:
|
||||
// mask, mask-image, mask-(mode|clip|size), mask-(repeat|origin), mask-position, mask-composite,
|
||||
case 6391: case 5879: case 5623: case 6135: case 4599: case 4855:
|
||||
// background-clip, columns, column-(count|fill|gap|rule|rule-color|rule-style|rule-width|span|width)
|
||||
case 4215: case 6389: case 5109: case 5365: case 5621: case 3829:
|
||||
return WEBKIT + value + value
|
||||
// tab-size
|
||||
case 4789:
|
||||
return MOZ + value + value
|
||||
// appearance, user-select, transform, hyphens, text-size-adjust
|
||||
case 5349: case 4246: case 4810: case 6968: case 2756:
|
||||
return WEBKIT + value + MOZ + value + MS + value + value
|
||||
// writing-mode
|
||||
case 5936:
|
||||
switch (charat(value, length + 11)) {
|
||||
// vertical-l(r)
|
||||
case 114:
|
||||
return WEBKIT + value + MS + replace(value, /[svh]\w+-[tblr]{2}/, 'tb') + value
|
||||
// vertical-r(l)
|
||||
case 108:
|
||||
return WEBKIT + value + MS + replace(value, /[svh]\w+-[tblr]{2}/, 'tb-rl') + value
|
||||
// horizontal(-)tb
|
||||
case 45:
|
||||
return WEBKIT + value + MS + replace(value, /[svh]\w+-[tblr]{2}/, 'lr') + value
|
||||
// default: fallthrough to below
|
||||
}
|
||||
// flex, flex-direction, scroll-snap-type, writing-mode
|
||||
case 6828: case 4268: case 2903:
|
||||
return WEBKIT + value + MS + value + value
|
||||
// order
|
||||
case 6165:
|
||||
return WEBKIT + value + MS + 'flex-' + value + value
|
||||
// align-items
|
||||
case 5187:
|
||||
return WEBKIT + value + replace(value, /(\w+).+(:[^]+)/, WEBKIT + 'box-$1$2' + MS + 'flex-$1$2') + value
|
||||
// align-self
|
||||
case 5443:
|
||||
return WEBKIT + value + MS + 'flex-item-' + replace(value, /flex-|-self/g, '') + (!match(value, /flex-|baseline/) ? MS + 'grid-row-' + replace(value, /flex-|-self/g, '') : '') + value
|
||||
// align-content
|
||||
case 4675:
|
||||
return WEBKIT + value + MS + 'flex-line-pack' + replace(value, /align-content|flex-|-self/g, '') + value
|
||||
// flex-shrink
|
||||
case 5548:
|
||||
return WEBKIT + value + MS + replace(value, 'shrink', 'negative') + value
|
||||
// flex-basis
|
||||
case 5292:
|
||||
return WEBKIT + value + MS + replace(value, 'basis', 'preferred-size') + value
|
||||
// flex-grow
|
||||
case 6060:
|
||||
return WEBKIT + 'box-' + replace(value, '-grow', '') + WEBKIT + value + MS + replace(value, 'grow', 'positive') + value
|
||||
// transition
|
||||
case 4554:
|
||||
return WEBKIT + replace(value, /([^-])(transform)/g, '$1' + WEBKIT + '$2') + value
|
||||
// cursor
|
||||
case 6187:
|
||||
return replace(replace(replace(value, /(zoom-|grab)/, WEBKIT + '$1'), /(image-set)/, WEBKIT + '$1'), value, '') + value
|
||||
// background, background-image
|
||||
case 5495: case 3959:
|
||||
return replace(value, /(image-set\([^]*)/, WEBKIT + '$1' + '$`$1')
|
||||
// justify-content
|
||||
case 4968:
|
||||
return replace(replace(value, /(.+:)(flex-)?(.*)/, WEBKIT + 'box-pack:$3' + MS + 'flex-pack:$3'), /s.+-b[^;]+/, 'justify') + WEBKIT + value + value
|
||||
// justify-self
|
||||
case 4200:
|
||||
if (!match(value, /flex-|baseline/)) return MS + 'grid-column-align' + substr(value, length) + value
|
||||
break
|
||||
// grid-template-(columns|rows)
|
||||
case 2592: case 3360:
|
||||
return MS + replace(value, 'template-', '') + value
|
||||
// grid-(row|column)-start
|
||||
case 4384: case 3616:
|
||||
if (children && children.some(function (element, index) { return length = index, match(element.props, /grid-\w+-end/) })) {
|
||||
return ~indexof(value + (children = children[length].value), 'span') ? value : (MS + replace(value, '-start', '') + value + MS + 'grid-row-span:' + (~indexof(children, 'span') ? match(children, /\d+/) : +match(children, /\d+/) - +match(value, /\d+/)) + ';')
|
||||
}
|
||||
return MS + replace(value, '-start', '') + value
|
||||
// grid-(row|column)-end
|
||||
case 4896: case 4128:
|
||||
return (children && children.some(function (element) { return match(element.props, /grid-\w+-start/) })) ? value : MS + replace(replace(value, '-end', '-span'), 'span ', '') + value
|
||||
// (margin|padding)-inline-(start|end)
|
||||
case 4095: case 3583: case 4068: case 2532:
|
||||
return replace(value, /(.+)-inline(.+)/, WEBKIT + '$1$2') + value
|
||||
// (min|max)?(width|height|inline-size|block-size)
|
||||
case 8116: case 7059: case 5753: case 5535:
|
||||
case 5445: case 5701: case 4933: case 4677:
|
||||
case 5533: case 5789: case 5021: case 4765:
|
||||
// stretch, max-content, min-content, fill-available
|
||||
if (strlen(value) - 1 - length > 6)
|
||||
switch (charat(value, length + 1)) {
|
||||
// (m)ax-content, (m)in-content
|
||||
case 109:
|
||||
// -
|
||||
if (charat(value, length + 4) !== 45)
|
||||
break
|
||||
// (f)ill-available, (f)it-content
|
||||
case 102:
|
||||
return replace(value, /(.+:)(.+)-([^]+)/, '$1' + WEBKIT + '$2-$3' + '$1' + MOZ + (charat(value, length + 3) == 108 ? '$3' : '$2-$3')) + value
|
||||
// (s)tretch
|
||||
case 115:
|
||||
return ~indexof(value, 'stretch') ? prefix(replace(value, 'stretch', 'fill-available'), length, children) + value : value
|
||||
}
|
||||
break
|
||||
// grid-(column|row)
|
||||
case 5152: case 5920:
|
||||
return replace(value, /(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/, function (_, a, b, c, d, e, f) { return (MS + a + ':' + b + f) + (c ? (MS + a + '-span:' + (d ? e : +e - +b)) + f : '') + value })
|
||||
// position: sticky
|
||||
case 4949:
|
||||
// stick(y)?
|
||||
if (charat(value, length + 6) === 121)
|
||||
return replace(value, ':', ':' + WEBKIT) + value
|
||||
break
|
||||
// display: (flex|inline-flex|grid|inline-grid)
|
||||
case 6444:
|
||||
switch (charat(value, charat(value, 14) === 45 ? 18 : 11)) {
|
||||
// (inline-)?fle(x)
|
||||
case 120:
|
||||
return replace(value, /(.+:)([^;\s!]+)(;|(\s+)?!.+)?/, '$1' + WEBKIT + (charat(value, 14) === 45 ? 'inline-' : '') + 'box$3' + '$1' + WEBKIT + '$2$3' + '$1' + MS + '$2box$3') + value
|
||||
// (inline-)?gri(d)
|
||||
case 100:
|
||||
return replace(value, ':', ':' + MS) + value
|
||||
}
|
||||
break
|
||||
// scroll-margin, scroll-margin-(top|right|bottom|left)
|
||||
case 5719: case 2647: case 2135: case 3927: case 2391:
|
||||
return replace(value, 'scroll-', 'scroll-snap-') + value
|
||||
}
|
||||
|
||||
return value
|
||||
}
|
||||
36
mc_test/node_modules/stylis/src/Serializer.js
generated
vendored
Executable file
36
mc_test/node_modules/stylis/src/Serializer.js
generated
vendored
Executable file
@ -0,0 +1,36 @@
|
||||
import {IMPORT, LAYER, COMMENT, RULESET, DECLARATION, KEYFRAMES} from './Enum.js'
|
||||
import {strlen, sizeof} from './Utility.js'
|
||||
|
||||
/**
|
||||
* @param {object[]} children
|
||||
* @param {function} callback
|
||||
* @return {string}
|
||||
*/
|
||||
export function serialize (children, callback) {
|
||||
var output = ''
|
||||
var length = sizeof(children)
|
||||
|
||||
for (var i = 0; i < length; i++)
|
||||
output += callback(children[i], i, children, callback) || ''
|
||||
|
||||
return output
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {object} element
|
||||
* @param {number} index
|
||||
* @param {object[]} children
|
||||
* @param {function} callback
|
||||
* @return {string}
|
||||
*/
|
||||
export function stringify (element, index, children, callback) {
|
||||
switch (element.type) {
|
||||
case LAYER: if (element.children.length) break
|
||||
case IMPORT: case DECLARATION: return element.return = element.return || element.value
|
||||
case COMMENT: return ''
|
||||
case KEYFRAMES: return element.return = element.value + '{' + serialize(element.children, callback) + '}'
|
||||
case RULESET: element.value = element.props.join(',')
|
||||
}
|
||||
|
||||
return strlen(children = serialize(element.children, callback)) ? element.return = element.value + '{' + children + '}' : ''
|
||||
}
|
||||
246
mc_test/node_modules/stylis/src/Tokenizer.js
generated
vendored
Executable file
246
mc_test/node_modules/stylis/src/Tokenizer.js
generated
vendored
Executable file
@ -0,0 +1,246 @@
|
||||
import {from, trim, charat, strlen, substr, append, assign} from './Utility.js'
|
||||
|
||||
export var line = 1
|
||||
export var column = 1
|
||||
export var length = 0
|
||||
export var position = 0
|
||||
export var character = 0
|
||||
export var characters = ''
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {object | null} root
|
||||
* @param {object | null} parent
|
||||
* @param {string} type
|
||||
* @param {string[] | string} props
|
||||
* @param {object[] | string} children
|
||||
* @param {number} length
|
||||
*/
|
||||
export function node (value, root, parent, type, props, children, length) {
|
||||
return {value: value, root: root, parent: parent, type: type, props: props, children: children, line: line, column: column, length: length, return: ''}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {object} root
|
||||
* @param {object} props
|
||||
* @return {object}
|
||||
*/
|
||||
export function copy (root, props) {
|
||||
return assign(node('', null, null, '', null, null, 0), root, {length: -root.length}, props)
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
export function char () {
|
||||
return character
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
export function prev () {
|
||||
character = position > 0 ? charat(characters, --position) : 0
|
||||
|
||||
if (column--, character === 10)
|
||||
column = 1, line--
|
||||
|
||||
return character
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
export function next () {
|
||||
character = position < length ? charat(characters, position++) : 0
|
||||
|
||||
if (column++, character === 10)
|
||||
column = 1, line++
|
||||
|
||||
return character
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
export function peek () {
|
||||
return charat(characters, position)
|
||||
}
|
||||
|
||||
/**
|
||||
* @return {number}
|
||||
*/
|
||||
export function caret () {
|
||||
return position
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} begin
|
||||
* @param {number} end
|
||||
* @return {string}
|
||||
*/
|
||||
export function slice (begin, end) {
|
||||
return substr(characters, begin, end)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} type
|
||||
* @return {number}
|
||||
*/
|
||||
export function token (type) {
|
||||
switch (type) {
|
||||
// \0 \t \n \r \s whitespace token
|
||||
case 0: case 9: case 10: case 13: case 32:
|
||||
return 5
|
||||
// ! + , / > @ ~ isolate token
|
||||
case 33: case 43: case 44: case 47: case 62: case 64: case 126:
|
||||
// ; { } breakpoint token
|
||||
case 59: case 123: case 125:
|
||||
return 4
|
||||
// : accompanied token
|
||||
case 58:
|
||||
return 3
|
||||
// " ' ( [ opening delimit token
|
||||
case 34: case 39: case 40: case 91:
|
||||
return 2
|
||||
// ) ] closing delimit token
|
||||
case 41: case 93:
|
||||
return 1
|
||||
}
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {any[]}
|
||||
*/
|
||||
export function alloc (value) {
|
||||
return line = column = 1, length = strlen(characters = value), position = 0, []
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {any} value
|
||||
* @return {any}
|
||||
*/
|
||||
export function dealloc (value) {
|
||||
return characters = '', value
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} type
|
||||
* @return {string}
|
||||
*/
|
||||
export function delimit (type) {
|
||||
return trim(slice(position - 1, delimiter(type === 91 ? type + 2 : type === 40 ? type + 1 : type)))
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {string[]}
|
||||
*/
|
||||
export function tokenize (value) {
|
||||
return dealloc(tokenizer(alloc(value)))
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} type
|
||||
* @return {string}
|
||||
*/
|
||||
export function whitespace (type) {
|
||||
while (character = peek())
|
||||
if (character < 33)
|
||||
next()
|
||||
else
|
||||
break
|
||||
|
||||
return token(type) > 2 || token(character) > 3 ? '' : ' '
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string[]} children
|
||||
* @return {string[]}
|
||||
*/
|
||||
export function tokenizer (children) {
|
||||
while (next())
|
||||
switch (token(character)) {
|
||||
case 0: append(identifier(position - 1), children)
|
||||
break
|
||||
case 2: append(delimit(character), children)
|
||||
break
|
||||
default: append(from(character), children)
|
||||
}
|
||||
|
||||
return children
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} index
|
||||
* @param {number} count
|
||||
* @return {string}
|
||||
*/
|
||||
export function escaping (index, count) {
|
||||
while (--count && next())
|
||||
// not 0-9 A-F a-f
|
||||
if (character < 48 || character > 102 || (character > 57 && character < 65) || (character > 70 && character < 97))
|
||||
break
|
||||
|
||||
return slice(index, caret() + (count < 6 && peek() == 32 && next() == 32))
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} type
|
||||
* @return {number}
|
||||
*/
|
||||
export function delimiter (type) {
|
||||
while (next())
|
||||
switch (character) {
|
||||
// ] ) " '
|
||||
case type:
|
||||
return position
|
||||
// " '
|
||||
case 34: case 39:
|
||||
if (type !== 34 && type !== 39)
|
||||
delimiter(character)
|
||||
break
|
||||
// (
|
||||
case 40:
|
||||
if (type === 41)
|
||||
delimiter(type)
|
||||
break
|
||||
// \
|
||||
case 92:
|
||||
next()
|
||||
break
|
||||
}
|
||||
|
||||
return position
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} type
|
||||
* @param {number} index
|
||||
* @return {number}
|
||||
*/
|
||||
export function commenter (type, index) {
|
||||
while (next())
|
||||
// //
|
||||
if (type + character === 47 + 10)
|
||||
break
|
||||
// /*
|
||||
else if (type + character === 42 + 42 && peek() === 47)
|
||||
break
|
||||
|
||||
return '/*' + slice(index, position - 1) + '*' + from(type === 47 ? type : next())
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {number} index
|
||||
* @return {string}
|
||||
*/
|
||||
export function identifier (index) {
|
||||
while (!token(peek()))
|
||||
next()
|
||||
|
||||
return slice(index, position)
|
||||
}
|
||||
115
mc_test/node_modules/stylis/src/Utility.js
generated
vendored
Executable file
115
mc_test/node_modules/stylis/src/Utility.js
generated
vendored
Executable file
@ -0,0 +1,115 @@
|
||||
/**
|
||||
* @param {number}
|
||||
* @return {number}
|
||||
*/
|
||||
export var abs = Math.abs
|
||||
|
||||
/**
|
||||
* @param {number}
|
||||
* @return {string}
|
||||
*/
|
||||
export var from = String.fromCharCode
|
||||
|
||||
/**
|
||||
* @param {object}
|
||||
* @return {object}
|
||||
*/
|
||||
export var assign = Object.assign
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {number} length
|
||||
* @return {number}
|
||||
*/
|
||||
export function hash (value, length) {
|
||||
return charat(value, 0) ^ 45 ? (((((((length << 2) ^ charat(value, 0)) << 2) ^ charat(value, 1)) << 2) ^ charat(value, 2)) << 2) ^ charat(value, 3) : 0
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {string}
|
||||
*/
|
||||
export function trim (value) {
|
||||
return value.trim()
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {RegExp} pattern
|
||||
* @return {string?}
|
||||
*/
|
||||
export function match (value, pattern) {
|
||||
return (value = pattern.exec(value)) ? value[0] : value
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {(string|RegExp)} pattern
|
||||
* @param {string} replacement
|
||||
* @return {string}
|
||||
*/
|
||||
export function replace (value, pattern, replacement) {
|
||||
return value.replace(pattern, replacement)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {string} search
|
||||
* @return {number}
|
||||
*/
|
||||
export function indexof (value, search) {
|
||||
return value.indexOf(search)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {number} index
|
||||
* @return {number}
|
||||
*/
|
||||
export function charat (value, index) {
|
||||
return value.charCodeAt(index) | 0
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @param {number} begin
|
||||
* @param {number} end
|
||||
* @return {string}
|
||||
*/
|
||||
export function substr (value, begin, end) {
|
||||
return value.slice(begin, end)
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} value
|
||||
* @return {number}
|
||||
*/
|
||||
export function strlen (value) {
|
||||
return value.length
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {any[]} value
|
||||
* @return {number}
|
||||
*/
|
||||
export function sizeof (value) {
|
||||
return value.length
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {any} value
|
||||
* @param {any[]} array
|
||||
* @return {any}
|
||||
*/
|
||||
export function append (value, array) {
|
||||
return array.push(value), value
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string[]} array
|
||||
* @param {function} callback
|
||||
* @return {string}
|
||||
*/
|
||||
export function combine (array, callback) {
|
||||
return array.map(callback).join('')
|
||||
}
|
||||
Reference in New Issue
Block a user