Skip to content

Commit

Permalink
implement local use
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Vilche committed Dec 17, 2024
1 parent acfa99e commit 2b3990d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/helpers/is-local-env.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
'use strict';

module.exports = () => process.env.JANIS_ENV === 'local';
module.exports = () => process.env.JANIS_ENV === 'local';
2 changes: 1 addition & 1 deletion lib/helpers/upper-snake-case.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';


const snakeCase = require('lodash.snakecase');

/**
* @param {string} string
* @returns {string} The string in UPPER_SNAKE_CASE
Expand Down

0 comments on commit 2b3990d

Please sign in to comment.