Skip to content

stephenscaff/utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

JavasScript Utils

Just an ongoing collection of JS utils I commonly use on projects. Initially, this was to aid in my withdraw from Jquery 🤗

Organization

The methods are wrapped in an function expression to provide some encapsulation.

So, you access methods like Util.methodName()

Example

Util.forEach ( items, function (index, item) {
  item.addEventListener('click', function(e) {
    e.preventDefault();
    ...
  });
});

About

Some JS utility functions I often use.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors