penambahan web socket

This commit is contained in:
2025-09-18 19:01:22 +07:00
parent 1d053646a9
commit d7bb2eb5bb
15070 changed files with 2402916 additions and 0 deletions

No files matched your search

+22
View File
@@ -0,0 +1,22 @@
Copyright (c) Ben Briggs <[email protected]> (http://beneb.info)
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.
+15
View File
@@ -0,0 +1,15 @@
# cssnano-utils
Utility methods and plugin for cssnano projects
## List of methods and plugin(s)
| **utility methods** | **description** |
| ------------------- | ------------------------------------------------------------------------- |
| `rawCache` | Postcss plugin to manage the raw value formatting for generated AST nodes |
| `getArguments` | Get a list of arguments, separated by a comma. |
| `sameParent` | Check that two PostCSS nodes share the same parent. |
## Contributors
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
@@ -0,0 +1,28 @@
{
"name": "cssnano-utils",
"version": "5.0.1",
"repository": "cssnano/cssnano",
"main": "src/index.js",
"types": "types/index.d.ts",
"description": "Utility methods and plugin for cssnano projects",
"homepage": "https://github.com/cssnano/cssnano",
"bugs": {
"url": "https://github.com/cssnano/cssnano/issues"
},
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.0"
},
"files": [
"src",
"LICENSE",
"types"
],
"license": "MIT",
"devDependencies": {
"postcss": "^8.5.3",
"postcss-value-parser": "^4.2.0"
},
"peerDependencies": {
"postcss": "^8.4.32"
}
}
@@ -0,0 +1,19 @@
'use strict';
/**
* Extracts the arguments of a CSS function or AtRule.
*
* @param {import('postcss-value-parser').ParsedValue | import('postcss-value-parser').FunctionNode} node
* @return {import('postcss-value-parser').Node[][]}
*/
module.exports = function getArguments(node) {
/** @type {import('postcss-value-parser').Node[][]} */
const list = [[]];
for (const child of node.nodes) {
if (child.type !== 'div') {
list[list.length - 1].push(child);
} else {
list.push([]);
}
}
return list;
};
@@ -0,0 +1,6 @@
'use strict';
const rawCache = require('./rawCache.js');
const getArguments = require('./getArguments.js');
const sameParent = require('./sameParent.js');
module.exports = { rawCache, getArguments, sameParent };
@@ -0,0 +1,34 @@
'use strict';
/**
* @type {import('postcss').PluginCreator<void>}
* @return {import('postcss').Plugin}
*/
function pluginCreator() {
return {
postcssPlugin: 'cssnano-util-raw-cache',
/**
* @param {import('postcss').Root} css
* @param {{result: import('postcss').Result & {root: {rawCache?: any}}}} arg
*/
OnceExit(css, { result }) {
result.root.rawCache = {
colon: ':',
indent: '',
beforeDecl: '',
beforeRule: '',
beforeOpen: '',
beforeClose: '',
beforeComment: '',
after: '',
emptyBody: '',
commentLeft: '',
commentRight: '',
};
},
};
}
pluginCreator.postcss = true;
module.exports = pluginCreator;
@@ -0,0 +1,44 @@
'use strict';
/**
* @param {import('postcss').AnyNode} nodeA
* @param {import('postcss').AnyNode} nodeB
* @return {boolean}
*/
function checkMatch(nodeA, nodeB) {
if (nodeA.type === 'atrule' && nodeB.type === 'atrule') {
return (
nodeA.params === nodeB.params &&
nodeA.name.toLowerCase() === nodeB.name.toLowerCase()
);
}
return nodeA.type === nodeB.type;
}
/** @typedef {import('postcss').AnyNode & {parent?: Child}} Child */
/**
* @param {Child} nodeA
* @param {Child} nodeB
* @return {boolean}
*/
function sameParent(nodeA, nodeB) {
if (!nodeA.parent) {
// A is orphaned, return if B is orphaned as well
return !nodeB.parent;
}
if (!nodeB.parent) {
// B is orphaned and A is not
return false;
}
// Check if parents match
if (!checkMatch(nodeA.parent, nodeB.parent)) {
return false;
}
// Check parents' parents
return sameParent(nodeA.parent, nodeB.parent);
}
module.exports = sameParent;
@@ -0,0 +1,3 @@
declare function _exports(node: import("postcss-value-parser").ParsedValue | import("postcss-value-parser").FunctionNode): import("postcss-value-parser").Node[][];
export = _exports;
//# sourceMappingURL=getArguments.d.ts.map
@@ -0,0 +1 @@
{"version":3,"file":"getArguments.d.ts","sourceRoot":"","sources":["../src/getArguments.js"],"names":[],"mappings":"AAOiB,gCAHN,OAAO,sBAAsB,EAAE,WAAW,GAAG,OAAO,sBAAsB,EAAE,YAAY,GACvF,OAAO,sBAAsB,EAAE,IAAI,EAAE,EAAE,CAalD"}
@@ -0,0 +1,5 @@
import rawCache = require("./rawCache.js");
import getArguments = require("./getArguments.js");
import sameParent = require("./sameParent.js");
export { rawCache, getArguments, sameParent };
//# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""}
@@ -0,0 +1,10 @@
export = pluginCreator;
/**
* @type {import('postcss').PluginCreator<void>}
* @return {import('postcss').Plugin}
*/
declare function pluginCreator(): import("postcss").Plugin;
declare namespace pluginCreator {
let postcss: true;
}
//# sourceMappingURL=rawCache.d.ts.map
@@ -0,0 +1 @@
{"version":3,"file":"rawCache.d.ts","sourceRoot":"","sources":["../src/rawCache.js"],"names":[],"mappings":";AAEA;;;GAGG;AACH,kCAFY,OAAO,SAAS,EAAE,MAAM,CAyBnC"}
@@ -0,0 +1,15 @@
export = sameParent;
/** @typedef {import('postcss').AnyNode & {parent?: Child}} Child */
/**
* @param {Child} nodeA
* @param {Child} nodeB
* @return {boolean}
*/
declare function sameParent(nodeA: Child, nodeB: Child): boolean;
declare namespace sameParent {
export { Child };
}
type Child = import("postcss").AnyNode & {
parent?: Child;
};
//# sourceMappingURL=sameParent.d.ts.map
@@ -0,0 +1 @@
{"version":3,"file":"sameParent.d.ts","sourceRoot":"","sources":["../src/sameParent.js"],"names":[],"mappings":";AAiBA,oEAAoE;AACpE;;;;GAIG;AACH,mCAJW,KAAK,SACL,KAAK,GACJ,OAAO,CAoBlB;;;;aAxBa,OAAO,SAAS,EAAE,OAAO,GAAG;IAAC,MAAM,CAAC,EAAE,KAAK,CAAA;CAAC"}