Skip to content

Commit

Permalink
startCase fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mdanelutti committed Jan 10, 2023
1 parent 77cd2d6 commit 49bbd4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/helpers/get-api-lambda-function-name.js
@@ -1,6 +1,6 @@
'use strict';

const startcase = require('lodash/startcase');
const startcase = require('lodash/startCase');

/**
* Get the JANIS Lambda function name
Expand Down
2 changes: 1 addition & 1 deletion lib/helpers/get-lambda-function-name.js
@@ -1,6 +1,6 @@
'use strict';

const startcase = require('lodash/startcase');
const startcase = require('lodash/startCase');

const LambdaError = require('../lambda-error');

Expand Down

0 comments on commit 49bbd4c

Please sign in to comment.