summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js
new file mode 100644
index 0000000000..241ec1ad8b
--- /dev/null
+++ b/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/architecture-examples/preact/src/app/util.js
@@ -0,0 +1,23 @@
+export function uuid() {
+ let uuid = '';
+ for (let i = 0; i < 32; i++) {
+ let random = Math.random() * 16 | 0;
+ if (i === 8 || i === 12 || i === 16 || i === 20) {
+ uuid += '-';
+ }
+ uuid += (i === 12 ? 4 : (i === 16 ? (random & 3 | 8) : random)).toString(16);
+ }
+ return uuid;
+}
+
+export function pluralize(count, word) {
+ return count === 1 ? word : word + 's';
+}
+
+export function store(namespace, data) {
+ // if (data) return localStorage[namespace] = JSON.stringify(data);
+
+ // let store = localStorage[namespace];
+ // return store && JSON.parse(store) || [];
+ return [];
+}