/*global java */ /** * Partial Rhino implementation of Node.js' `os` module. * @module os * @author Jeff Williams * @see http://nodejs.org/api/os.html */ 'use strict'; exports.EOL = String( java.lang.System.getProperty('line.separator') ); exports.platform = function() { return process.platform; };