An open API service indexing awesome lists of open source software.

https://github.com/ossphilippines/morphling.js

Vanilla Js version of Vue Morphling
https://github.com/ossphilippines/morphling.js

hacktoberfest

Last synced: 4 months ago
JSON representation

Vanilla Js version of Vue Morphling

Awesome Lists containing this project

README

          

# Morphling

Super easy to use, pure Javascript data filters collection.

> WARNING: If you are looking for the morphling for vuejs, I renamed it to vue-morphling. This new library is the NEW vanilla javascript version of morphling. For questions please feel free to contact me.

> NOTE: This library is currently in development stage and is not yet ready for production use.

# Install

**NPM** or **Yard**

`npm install morphling`

`yarn add morphling`

**CDN**

`https://unpkg.com/morphling/dist/morphling.js`
# Apply

*Node*

`import morphling from 'morphling'`;

*HTML*

```html


...


...

...


```

# Use

```javascript
morphling.uppercase('foo');
// FOO

mophling.reverse('bar');
// rab
```

```html

foo

bar

```

# API

**Filters**

- [Capitalize](#capitalize)

## capitalize

> foo -> Foo

Capitalize the first character of a giver string.

```javascript
morphling.capitalize('foo'); // -> Foo
```

```html
foo // -> Foo
```

[Back to top ↑](#api)

----

Made with ❤️ by Jofferson Ramirez Tiquez