@mojaloop/sdk-scheme-adapter 12.2.0 → 12.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +0,0 @@
1
- /**************************************************************************
2
- * (C) Copyright ModusBox Inc. 2019 - All rights reserved. *
3
- * *
4
- * This file is made available under the terms of the license agreement *
5
- * specified in the corresponding source code repository. *
6
- * *
7
- * ORIGINAL AUTHOR: *
8
- * Matt Kingston - matt.kingston@modusbox.com *
9
- **************************************************************************/
10
-
11
- 'use strict';
12
-
13
- const words = require('./words.json');
14
-
15
- const randomEl = arr => arr[Math.floor(Math.random() * arr.length)];
16
- module.exports = (separator = '-') => [
17
- randomEl(words.adjectives),
18
- randomEl(words.nouns),
19
- randomEl(words.adjectives),
20
- randomEl(words.nouns)
21
- ].join(separator);