Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

17
node_modules/generic-names/readme.md generated vendored Normal file
View File

@@ -0,0 +1,17 @@
generic-names
=============
Helper for building generic names, similar to webpack. Designed to be used with [postcss‑modules‑scope](https://github.com/css-modules/postcss-modules-scope).
Uses [interpolateName](https://github.com/webpack/loader-utils#interpolatename) from the webpack/loader-utils.
## API
```javascript
var genericNames = require('generic-names');
var generate = genericNames('[name]__[local]___[hash:base64:5]', {
context: process.cwd()
});
generate('foo', '/case/source.css'); // 'source__foo___3mRq8'
```