| 116 | const distinct_id = n_id => Buffer.from(n_id+'').toString('base64').replace(/=+$/, ''); |
| 117 | |
| 118 | const yaml_load = z_yaml => 'string' === typeof z_yaml |
| 119 | ? yaml.safeLoad(`%YAML 1.2\n---\n${gobble(z_yaml)}\n`) |
| 120 | : z_yaml; |
| 121 | |
| 122 | const regexp = r_source => r_source.toString().replace(/^\/(.+)\/[^/]*/, '$1'); |
| 123 |
no test coverage detected