mirror of
https://github.com/usebruno/bruno.git
synced 2025-03-09 20:12:54 +01:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
const dotenv = require('dotenv');
|
|
|
|
const parser = (input) => {
|
|
const buf = Buffer.from(input);
|
|
const parsed = dotenv.parse(buf);
|
|
return parsed;
|
|
};
|
|
|
|
module.exports = parser;
|