Skip to content

Latest commit

 

History

History

string

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

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