Skip to content

Instantly share code, notes, and snippets.

View jniemin's full-sized avatar

Jussi Nieminen jniemin

View GitHub Profile
@jniemin
jniemin / module1.js
Created November 12, 2015 12:43
Small example how to stub pure functions
"use strict";
import {module2_pureFunction} from './module2';
export function module1_pureFunction(){
return module2_pureFunction();
}