1.2.1 • Published 4 years ago

sog-helper v1.2.1

Weekly downloads
11
License
MIT
Repository
github
Last release
4 years ago

sog-helper

NPM version Downloads Build Status DeepScan grade

The library of helpers.

This library offers a lot of different useful helpers.

Navigation

Installation and Usage

The library can be loaded as a standalone script.

Install the library with npm install sog-helper

<script type="text/javascript" src="build/output/sog-helper.min.js"></script>
<script type="text/javascript">

    sogh.blurry('div#container-id table tbody td:nth-child(6) a');

    // Or
    sogh.blurry([
        'div#container-id table tbody td:nth-child(6) a',
        'div#container-id table tbody td:nth-child(7)'
    ]);
</script>

⬆ navigation

Available Helpers

Below is a list of all available helpers:

⬆ navigation

Helpers

Blurry

This helper makes blurry hidden text. For instance it is necessary to hide all email address on the page.

example:

sogh.blurry('div#container-id table tbody td:nth-child(6) a');

// Or
sogh.blurry([
    'div#container-id table tbody td:nth-child(6) a',
    'div#container-id table tbody td:nth-child(7)'
]);

⬆ navigation


Camel Case

Convert any string to camelcase string.

example:

sogh.camelCase('user_name_and_email'); // return UserNameAndEmail

⬆ navigation


Sluggable

Convert any string to sluggable string.

example:

sogh.sluggable('user name and email'); // return user-name-and-email

⬆ navigation


Words

Convert string to words.

example:

sogh.words('user_name_and_email'); // return ['user', 'name', 'and', 'email']

⬆ navigation


License (MIT)

Copyright (c) 2020 Slave of God <iamtheslaveofgod@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
1.2.1

4 years ago

1.2.0

4 years ago

1.1.4

4 years ago

1.1.3

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago