Skip to content

Instantly share code, notes, and snippets.

findSomething()
.then((something) => transformSomething(something))
.then((transformed) => validateTransformed(transformed))
.then((validated) => console.log('data is valid:', validated)
.catch((error) => console.error(new Error(error))
const validateTransformation = sequentialCallback(
transformSomething,
validateSomething
)
const something = { foo: 'bar' }
validateTransformation(something, (error, validated) => {
if (error) {
console.error(new Error(error))
const validateTransformation = sequentialCallback(
transformSomething,
validateTransformed,
(validated, callback) => callback(null, validated, 'data is valid:')
)
validateTransformation({ foo: 'bar' }, (error, validated, label) => {
if (error) {
console.error(new Error(error))
} else {
const users = {
1: { name: 'bob' },
2: { name: 'sally' }
}
const posts = [
{ author: 'sally', title: 'Hello World' },
{ author: 'bob', title: 'How to do stuff' }
]
function sequentialCallback (...fns) {
return (...args) => {
const done = args.pop()
const next = (error, ...args) => {
if (error) return done(error)
if (fns.length) {
const fn = fns.shift()
return fn(...args, next)
}
return done(null, ...args)
@zspecza
zspecza / setArity.js
Last active December 6, 2016 02:29
sets the length property of a given function to the given arity
function setArity (arity, fn) {
if (typeof setArity.cache === 'undefined') {
setArity.cache = {}
}
if (typeof setArity.cache[arity] === 'undefined') {
setArity.cache[arity] = (fn) => {
switch (arity) {
case 0: return function () { return fn.apply(this, arguments) }
case 1: return function (a) { return fn.apply(this, arguments) }
case 2: return function (a, b) { return fn.apply(this, arguments) }
@zspecza
zspecza / curryN.js
Last active April 12, 2017 18:13
curryN with placeholder support (not optimized)
// this file is just so I can reference the idea behind placeholders - if you want a maintained version, check out:
// - https://github.com/thisables/curry
// - http://ramdajs.com
const __ = Symbol
const ARITIES = {}
const setArity = (arity, fn) => {
if (!ARITIES[arity]) {
findSomething((error, something) => {
if (error) {
throw new Error(error)
}
transformSomething(something, (error, transformed) => {
if (error) {
throw new Error(error)
}
validateTransformed(transformed, (error, validated) => {
if (error) {
@zspecza
zspecza / simple-slack.js
Last active August 20, 2019 11:57
A simplified API for working with Slack
import fetch, {
Response } from 'node-fetch';
import qs from 'querystring';
import WebSocket from 'ws';
class SimpleSlack {
baseURL = 'https://slack.com/api/';
eventListeners = {};
connection = null;
@zspecza
zspecza / vertical-rhythm.styl
Created June 3, 2013 12:43
Vertical Rhythm module from Compass ported to Stylus
// Vertical Rhythm ported from SASS/Compass
// Works exactly as before, with four exceptions:
// 1. rhythm() is a mixin, $rhythm() is a function. Stylus doesn't differentiate between same-name mixins and functions
// 2. All of the variables you're used to lack the dollar sign ($) prepend.
// 3. debug-vertical-alignment uses a temporary online image solution via http://basehold.it
// 4. There is no h-borders alias. Use horizonatal-borders instead.
// The base font size.
base-font-size ?= 16px