πStringEx
The module provides several methods for manipulating strings.
Imports
import { StringExService } from 'niro-health';import { StringExModule } from 'niro-health';import type { IStringExService } from 'niro-health';Method of Use
import { Module } from '@nestjs/common';
import {
StringExService,
} from 'niro-health';
import { AppController } from './app.controller';
import { AppService } from './app.service';
@Module({
controllers: [AppController],
providers: [
AppService,
{
provide: 'IStringExService',
useClass: StringExService,
},
],
})
export class AppModule {}Without dependencies
Methods
Method
Scope
Description
Last updated