2.0.2 • Published 5 years ago

ivy.angular.value-helpers v2.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

Ivy/Value-Helpers

A series of Angular 4 helpers for working with some basic value manipulation. Currently, this module supports the StringHelper.

Getting Started

To install, simply download the NPM package 'ivy/value-helpers'

NPM

npm install ivy/value-helpers

Yarn

yarn add ivy/value-helpers

Installing

Installing the module to your Angular application is as simple as including it in the Module Imports.

// Angular
import { NgModule } from '@angular/core';

// Ivy Material
import { IvyValueHelpersModule } from 'ivy/value-helpers';

// NgModule
@NgModule({
    providers: providers
})
export class TestModule {
    imports: [
        IvyValueHelpersModule.forRoot()
    ]
}

After you've installed the Module, you can simply inject the services into your application as necessary.

import { StringHelper } from 'ivy/value-helpers';

export class TestClass {
    constructor(stringHelper: StringHelper) {
    }
}

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Ian Buchan - Initial work
2.0.2

5 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago