UNPKG
@mapcss/config
Version:
beta (1.0.0-beta.58)
latest (1.0.0-beta.43)
1.0.0-beta.58
1.0.0-beta.57
1.0.0-beta.56
1.0.0-beta.55
1.0.0-beta.54
1.0.0-beta.53
1.0.0-beta.52
1.0.0-beta.51
1.0.0-beta.50
1.0.0-beta.49
1.0.0-beta.48
1.0.0-beta.47
1.0.0-beta.46
1.0.0-beta.45
1.0.0-beta.44
1.0.0-beta.43
Definition of MapCSS config, loader
mapcss.miyauchi.dev
TomokiMiyauci/mapcss
@mapcss/config
/
esm
/
core
/
preprocess.js
12 lines
(11 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ toAST }
from
"./deps.js"
;
export
function
createInjectCSS
(
css
) {
return
{
name
:
"mapcss/inject-css-statement"
,
fn
:
(
root
) =>
{
const
cssRoot =
toAST
(css); root.
prepend
(cssRoot);
return
root; }, }; }