Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 459 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 459 Bytes

String

The utilities for manage string.

Usage

@use "@unsass/utilities/string";

API

Sass functions

Function Description
replace Return value with replacement option.

Replace string with string.replace()

The following Sass will produce:

@use "@unsass/utilities/string";

$key: "#{string.replace(test, e)}";
// tst