
Security News
TC39 Advances 11 Proposals for Math Precision, Binary APIs, and More
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
string-extract-sass-vars
Advanced tools
Parse SASS variables file into a plain object of CSS key-value pairs
Parse SASS variables file into a plain object of CSS key-value pairs
This package is pure ESM. If you're not ready yet, install an older version of this program, 2.1.0 (npm i string-extract-sass-vars@2.1.0
).
npm i string-extract-sass-vars
import { strict as assert } from "assert";
import { extractVars } from "string-extract-sass-vars";
assert.deepEqual(
extractVars(`// all variables are here!!!
// ------------------------------------------
$red: #ff6565; // this is red
// $green: #63ffbd; // no green here
$yellow: #ffff65; // this is yellow
$blue: #08f0fd; // this is blue
$fontfamily: Helvetica, sans-serif;
$border: 1px solid #dedede;
$borderroundedness: 3px;
$customValue1: tralala;
$customValue2: tralala;
// don't mind this comment about #ff6565;
$customValue3: 10;`),
{
red: "#ff6565",
yellow: "#ffff65",
blue: "#08f0fd",
fontfamily: "Helvetica, sans-serif",
border: "1px solid #dedede",
borderroundedness: "3px",
customValue1: "tralala",
customValue2: "tralala",
customValue3: 10,
},
);
Please visit codsen.com for a full description of the API.
To report bugs or request features or assistance, raise an issue on GitHub.
MIT License.
Copyright © 2010-2025 Roy Revelt and other contributors.
FAQs
Parse SASS variables file into a plain object of CSS key-value pairs
The npm package string-extract-sass-vars receives a total of 277 weekly downloads. As such, string-extract-sass-vars popularity was classified as not popular.
We found that string-extract-sass-vars demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.