README
sog-helper
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>
Available Helpers
Below is a list of all available helpers:
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)'
]);
Camel Case
Convert any string to camelcase string.
example:
sogh.camelCase('user_name_and_email'); // return UserNameAndEmail
Sluggable
Convert any string to sluggable string.
example:
sogh.sluggable('user name and email'); // return user-name-and-email
Words
Convert string to words.
example:
sogh.words('user_name_and_email'); // return ['user', 'name', 'and', 'email']
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.