diff --git a/src/getAccountId.js b/src/getAccountId.js index 1754e75..15a483f 100644 --- a/src/getAccountId.js +++ b/src/getAccountId.js @@ -1,5 +1,4 @@ const AWS = require('aws-sdk') -const { memoizeWith, identity } = require('ramda') const getAccountId = async (config) => { const sts = new AWS.STS(config) @@ -9,4 +8,4 @@ const getAccountId = async (config) => { return res.Account } -module.exports = memoizeWith(identity, getAccountId) +module.exports = getAccountId