@unsass/string

1.4.3 • Public • Published

String

Version Downloads License

Introduction

Sass functions to manage string.

Installing

npm install @unsass/string

Usage

@use "@unsass/string";

$string: string.replace("The quick brown fox jumps over the lazy dog. If the dog reacted, was it really lazy?", "dog", "monkey");
// The quick brown fox jumps over the lazy monkey. If the monkey reacted, was it really lazy?

API

Function Description
replace($string, $query, $replace) Replace character on string.
to-number($value) Transform string to number. Ex: "10" to 10.
from-number($value) Transform number to string. Ex: 10 to "10".
starts-with($string, $substring) Find if string starts with substring.
ends-with($string, $substring) Find if string ends with substring.
trim-start($string, $target) Delete character on string start.
trim-end($string, $target) Delete character on string end.
trim($string, $start, $end) Delete character on string any part.
combine($values...) Combine strings. Ex combine("button", "label") -> button-label

Package Sidebar

Install

npm i @unsass/string

Weekly Downloads

45

Version

1.4.3

License

MIT

Unpacked Size

8.86 kB

Total Files

6

Last publish

Collaborators

  • bdamevin