Prefer path
over Path
This commit is contained in:
parent
8467352994
commit
2ee78ec556
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
/* eslint-env node */
|
||||
|
||||
const Path = require('path');
|
||||
const path = require('path');
|
||||
|
||||
const {
|
||||
escapeRegExp,
|
||||
|
@ -13,7 +13,7 @@ const { compose } = require('lodash/fp');
|
|||
const PHONE_NUMBER_PATTERN = /\+\d{7,12}(\d{3})/g;
|
||||
const GROUP_ID_PATTERN = /(group\()([^)]+)(\))/g;
|
||||
|
||||
const APP_ROOT_PATH = Path.join(__dirname, '..', '..', '..');
|
||||
const APP_ROOT_PATH = path.join(__dirname, '..', '..', '..');
|
||||
const APP_ROOT_PATH_PATTERN = (() => {
|
||||
try {
|
||||
// Safe `String::replaceAll`:
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
const Path = require('path');
|
||||
const path = require('path');
|
||||
|
||||
const { assert } = require('chai');
|
||||
|
||||
const Privacy = require('../../js/modules/privacy');
|
||||
|
||||
|
||||
const APP_ROOT_PATH = Path.join(__dirname, '..', '..', '..');
|
||||
const APP_ROOT_PATH = path.join(__dirname, '..', '..', '..');
|
||||
|
||||
describe('Privacy', () => {
|
||||
describe('redactPhoneNumbers', () => {
|
||||
|
|
Loading…
Reference in a new issue