This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function debounce(fn, delay, leading) { | |
var timeout | |
var firedAt | |
return function() { | |
var args = arguments | |
function fire () { | |
firedAt = Date.now() | |
fn.apply(null, args) | |
} | |
if (timeout) clearTimeout(timeout) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function findKeyDeep(obj, key) { | |
const foundKeysReferences = []; | |
if (Array.isArray(obj)) { | |
obj.forEach(entry => | |
foundKeysReferences.push(...findKeyDeep(entry, key))); | |
} else if (typeof obj === 'object' && obj !== null) { | |
if (obj[key]) { | |
foundKeysReferences.push(obj); | |
} | |
Object.values(obj).forEach(value => |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "cmd+l", | |
"command": "console.log.wrap.down.prefix", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+w ctrl+alt+down", | |
"command": "-console.log.wrap.down.prefix", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
// Placeholders with the same ids are connected. | |
// Example: | |
"console.log": { | |
"scope": "javascript,typescript", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and | |
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope | |
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is | |
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. | |
// Placeholders with the same ids are connected. | |
// Example: | |
"context": { | |
"scope": "javascript,typescript", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const typeOf = require('just-typeof') | |
/** | |
* Update object values recursively | |
* @param {Object} obj | |
* @param {Function} handler | |
* @returns {Object} - new object | |
*/ | |
const updateObjectValuesRecursively = (obj, handler) => { | |
const newObj = {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Simple object validation | |
*/ | |
const typeOf = require('just-typeof') | |
const validateEmail = require('./utils/helpers/strings/validateEmail') | |
const RULES = { | |
/** | |
* Type of the value | |
* @param {mixed} value |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var mc = 12 // maximum columns | |
var m = 2 // margin in % | |
var scw = (100 - (m * (mc - 1))) / mc | |
var str = ` | |
.row, | |
.column { | |
box-sizing: border-box; | |
} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Converst function into yieldable | |
* @param {Function} | |
* @return {Function} yieldable callback | |
*/ | |
function yieldable (func) { | |
return function () { | |
let args = [].slice.call(arguments); | |
let ctx = this; | |
return function (done) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function sortObjectByKeys(obj, recursive = false) { | |
const keys = Object.keys(obj).sort(); | |
let sorted_obj = {}; | |
keys.forEach(key => { | |
sorted_obj[key] = obj[key]; | |
if (recursive && isObject(sorted_obj[key])) { | |
sorted_obj[key] = sortObjectByKeys(sorted_obj[key]); | |
} |
NewerOlder