Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

123456789101112131415161718
  1. var fs = require('fs')
  2. module.exports = {
  3. "a": 1 + 2,
  4. "b": prompt('To be or not to be?', '!2b', function (s) {
  5. return s.toUpperCase() + '...'
  6. }),
  7. "c": {
  8. "x": prompt(function (x) { return x * 100 }),
  9. "y": tmpdir + "/y/file.txt"
  10. },
  11. a_function: function (cb) {
  12. fs.readFile(__filename, 'utf8', cb)
  13. },
  14. asyncPrompt: function (cb) {
  15. return cb(null, prompt('a prompt at any other time would smell as sweet'))
  16. }
  17. }