Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
545 B
18 lines
545 B
1 year ago
|
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'
|
||
|
```
|