-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7667cb2
commit a8b77fb
Showing
6 changed files
with
123 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import 'local-file.coffee' | ||
import 'coffee-script' | ||
|
||
import _ from 'underscore' | ||
import * as underscore from 'underscore' | ||
|
||
import { now } from 'underscore' | ||
import { now as currentTimestamp } from 'underscore' | ||
import { first, last } from 'underscore' | ||
import utilityBelt, { each } from 'underscore' | ||
|
||
export default Math | ||
export square = (x) -> x * x | ||
export class Mathematics | ||
least: (x, y) -> if x < y then x else y | ||
|
||
export { sqrt } | ||
export { sqrt as squareRoot } | ||
export { Mathematics as default, sqrt as squareRoot } | ||
|
||
export * from 'underscore' | ||
export { max, min } from 'underscore' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters