11266cb775
* Decrypt given and family names from profile name string * Handle both given and family name from decrypted profile name * Ensure we properly handle profiles with no family name
21 lines
632 B
TypeScript
21 lines
632 B
TypeScript
import * as GoogleChrome from './GoogleChrome';
|
|
import { arrayBufferToObjectURL } from './arrayBufferToObjectURL';
|
|
import { combineNames } from './combineNames';
|
|
import { createBatcher } from './batcher';
|
|
import { createWaitBatcher } from './waitBatcher';
|
|
import { isFileDangerous } from './isFileDangerous';
|
|
import { missingCaseError } from './missingCaseError';
|
|
import { migrateColor } from './migrateColor';
|
|
import { makeLookup } from './makeLookup';
|
|
|
|
export {
|
|
arrayBufferToObjectURL,
|
|
combineNames,
|
|
createBatcher,
|
|
createWaitBatcher,
|
|
GoogleChrome,
|
|
isFileDangerous,
|
|
makeLookup,
|
|
migrateColor,
|
|
missingCaseError,
|
|
};
|