qsu 1.1.4
qsu: ^1.1.4 copied to clipboard
QSU is a lightweight and simple module with a variety of built-in utility functions that you can utilize in your Dart projects.
example/qsu_example.dart
import 'package:qsu/qsu.dart';
/// For the various functions provided by the package, see the documentation: https://qsu.cdget.com/api
void main() {
trim(' hello '); // Returns 'hello'
numberFormat(123456); // Returns '123,456'
capitalizeFirst('abc'); // Returns 'Abc'
isEmail('abc@example.com'); // Returns true
}