move signal.js to TS
parent
741b5b6399
commit
5bc576249b
@ -1,14 +0,0 @@
|
|||||||
{
|
|
||||||
"env": {
|
|
||||||
"browser": false,
|
|
||||||
"commonjs": true,
|
|
||||||
"node": false
|
|
||||||
},
|
|
||||||
"globals": {
|
|
||||||
"console": true,
|
|
||||||
"setTimeout": true
|
|
||||||
},
|
|
||||||
"parserOptions": {
|
|
||||||
"sourceType": "module"
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,21 +0,0 @@
|
|||||||
/* eslint-env browser */
|
|
||||||
/* global dcodeIO */
|
|
||||||
|
|
||||||
/* eslint-disable camelcase, no-bitwise */
|
|
||||||
|
|
||||||
module.exports = {
|
|
||||||
bytesFromString,
|
|
||||||
getRandomBytes,
|
|
||||||
};
|
|
||||||
|
|
||||||
// Utility
|
|
||||||
|
|
||||||
function bytesFromString(string) {
|
|
||||||
return dcodeIO.ByteBuffer.wrap(string, 'utf8').toArrayBuffer();
|
|
||||||
}
|
|
||||||
|
|
||||||
function getRandomBytes(n) {
|
|
||||||
const bytes = new Uint8Array(n);
|
|
||||||
window.crypto.getRandomValues(bytes);
|
|
||||||
return bytes;
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
// The idea with this file is to make it webpackable for the style guide
|
|
||||||
|
|
||||||
const Crypto = require('./crypto');
|
|
||||||
const Data = require('../../ts/data/data');
|
|
||||||
const OS = require('../../ts/OS');
|
|
||||||
const Util = require('../../ts/util');
|
|
||||||
|
|
||||||
exports.setup = () => {
|
|
||||||
Data.init();
|
|
||||||
|
|
||||||
return {
|
|
||||||
Crypto,
|
|
||||||
Data,
|
|
||||||
OS,
|
|
||||||
Util,
|
|
||||||
};
|
|
||||||
};
|
|
@ -0,0 +1,12 @@
|
|||||||
|
// The idea with this file is to make it webpackable for the style guide
|
||||||
|
|
||||||
|
import * as Data from '../../ts/data/data';
|
||||||
|
import * as Util from '../../ts/util';
|
||||||
|
|
||||||
|
export const setupSignal = () => {
|
||||||
|
Data.init();
|
||||||
|
|
||||||
|
return {
|
||||||
|
Util,
|
||||||
|
};
|
||||||
|
};
|
Loading…
Reference in New Issue