Shared assets, cleanup for initial deploy

This commit is contained in:
Tom Moor
2017-10-29 15:02:24 -07:00
parent e370676b49
commit 84c82c31a9
47 changed files with 112 additions and 122 deletions

6
shared/random.js Normal file
View File

@@ -0,0 +1,6 @@
// @flow
const randomInteger = (min: number, max: number) => {
return Math.floor(Math.random() * (max - min + 1) + min);
};
export { randomInteger };