Skip to content

Instantly share code, notes, and snippets.

@bojanrajkovic
Created October 30, 2015 01:04
Show Gist options
  • Save bojanrajkovic/4259f02feceae6ddab2e to your computer and use it in GitHub Desktop.
Save bojanrajkovic/4259f02feceae6ddab2e to your computer and use it in GitHub Desktop.
import util from './utils.js';
console.log(util.doSomething({ bar: "baz" }));
export default class {
static doSomething(foo) {
return foo.bar == "baz";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment