Skip to content

Instantly share code, notes, and snippets.

View StephanHoyer's full-sized avatar
🏠
Working from home

Stephan Hoyer StephanHoyer

🏠
Working from home
View GitHub Profile
"use strict";
/*
Chainable formatters
Usage:
function trim(value) {
return value.trim();
}
"use strict";
/*
Formatters
Usage:
f.append(f.trim(' foo '), 'bar') > foobar
With composition
@StephanHoyer
StephanHoyer / index.js
Created November 7, 2014 15:56 — forked from kamilogorek/index.js
requirebin sketch
var AmpersandState = require('ampersand-state');
var Ingredient = AmpersandState.extend({
props: {
name: 'string'
}
});
var Meal = AmpersandState.extend({
props: {
@StephanHoyer
StephanHoyer / Proposals.md
Last active December 24, 2015 06:19 — forked from it-ony/Proposals.md

Talk proposals for @leipzigjs usergroup

(In a non prioritized order)

  • flow.js - a synchron, asynchron control flow javascript library
  • inherit.js - a js inheritance library
  • xajax - perform cross-domain AJAX requests via iFrame and postMessage
  • query.js - an abstract query language which can be mapped to different query language implementations
  • jscop - static javascript code analyser written in node.js