feature (org): cool stuff for org mode users ;)

This commit is contained in:
Mickael KERJEAN
2018-04-24 22:58:28 +10:00
parent e31cbc13e9
commit 259061f5d8
34 changed files with 2570 additions and 289 deletions

8
client/helpers/random.js Normal file
View File

@ -0,0 +1,8 @@
export function guid(){
function s4() {
return Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
}
return s4() + s4() + '-' + s4() + '-' + s4() + '-' + s4() + '-' + s4() + s4() + s4();
}