UNPKG

212 BJavaScriptView Raw
1'use strict';
2
3const os = require('os');
4
5// This function simply provides roundabout way of getting os.EOL
6// so we can mock this for Jest tests
7function getOsEl() {
8 return os.EOL;
9}
10
11module.exports = getOsEl;