UNPKG

serverless-offline-msk

Version:

A serverless offline plugin that enables AWS MSK events

12 lines (9 loc) 288 B
'use strict'; var isWindows = require('../is-windows'); module.exports = (function () { if (typeof process === 'undefined') return 'C:\\'; if (!process) return 'C:\\'; if (typeof process.cwd !== 'function') return 'C:\\'; if (!isWindows) return 'C:\\'; return process.cwd(); }());