I hereby claim:
- I am zebulonj on github.
- I am zebulonj (https://keybase.io/zebulonj) on keybase.
- I have a public key whose fingerprint is 7156 A972 402B A62B 6392 270A 69F7 B512 2DD2 931A
To claim this, I am signing this object:
import resolve from 'rollup-plugin-node-resolve'; | |
import commonjs from 'rollup-plugin-commonjs'; | |
import babel from 'rollup-plugin-babel'; | |
import uglify from 'rollup-plugin-uglify'; | |
import pkg from './package.json'; | |
export default [{ | |
input : './index.js', | |
output: [ |
import test from 'tape'; | |
import { query } from './store'; | |
import { summarize } from './model'; | |
// This could be removed to a helper library... you'd never have to look at it if you didn't want. | |
const inspectIteration = assert => steps => iterator => { | |
let result; | |
steps.forEach( ( def, index ) => { | |
const step = iterator.next( result ); |
import test from 'tape'; | |
const query = async () => ({ value: 'Z' }); | |
const call = ( fn, ...params ) => ({ fn, params }); | |
const create = function *( formId ) { | |
const form = yield call( query, 'SELECT', formId ); | |
return form; |
//registry.npmjs.org/:_authToken=${NPM_TOKEN} | |
save-exact=true | |
loglevel=error |
I hereby claim:
To claim this, I am signing this object:
export default function ({ React }) { | |
// Component | |
return function SearchBox( props ) { | |
return { | |
props, | |
render() { | |
const { label, actions } = this.props; |
import Rx from 'rx/dist/rx.all'; | |
/** | |
* Filters accept an input, and return an observable that will yield a single value (the filtered input). | |
* | |
* @param x | |
* @returns {Observable<T>} | |
*/ | |
function f1( x ) { | |
return Rx.Observable.create( function( observer ) { |
'use strict'; | |
/** | |
* Convenience method to get current time. | |
* | |
* @returns {Integer} Current time in milliseconds since Epoch. | |
*/ | |
function now() { | |
return ( new Date() ).getTime(); | |
} |