Skip to content

Instantly share code, notes, and snippets.

View rsurjano's full-sized avatar
:octocat:
Business & Code!

Roy Carlos rsurjano

:octocat:
Business & Code!
View GitHub Profile
@rsurjano
rsurjano / loop-any-times.js
Last active September 12, 2018 15:24
Array Utils
// 1. Basic for loop.
for(var i = 0; i < 5; i++) {
// ....
}
// 2. Using Array's join and split methods
Array.apply(null, Array(5)).forEach(function(){
// ...
});
@rsurjano
rsurjano / clone-object.js
Last active September 12, 2018 15:24
Object Utils
'use strict';
function clone(item) {
if (!item) {
return item;
}
// null, undefined values check
var types = [Number, String, Boolean],
result;
@rsurjano
rsurjano / sha1.js
Created August 18, 2016 16:56
Crypt Utils
/**
* SHA-1 cryptographic hash constructor.
*
* The properties declared here are discussed in the above algorithm document.
* @constructor
*/
Sha1 = function() {
/**
@rsurjano
rsurjano / get-absolute-url.js
Last active September 3, 2016 15:58
Web Utils
var getAbsoluteUrl = (function() {
var a;
return function(url) {
if(!a) a = document.createElement('a');
a.href = url;
return a.href;
};
})();