
ctrl+k
Enter a search term above to see results...
Enter a search term above to see results...
Semantic UI includes this standalone library to avoid external dependencies and to allow for performant and opinionated uses of common utils like clone
and isEqual
as well as some particular use cases for web components.
The utils library is a standalone package that can be used without any other dependencies.
npm install @semantic-ui/utils
Utilities can be used by importing them in your project.
import { isArray, capitalize, clone } from '@semantic-ui/utils';
const myArray = [1, 2, 3];console.log(isArray(myArray)); // true
const myString = "hello world";console.log(capitalize(myString)); // "Hello world"
const myObject = { a: 1, b: { c: 2 } };const clonedObject = clone(myObject);console.log(clonedObject); // { a: 1, b: { c: 2 } }
The Utils library is organized into several categories: