Skip to content

Instantly share code, notes, and snippets.

@mattiaerre
Created September 15, 2016 02:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattiaerre/3f02a8554fbd365a860aa07b8d2c553d to your computer and use it in GitHub Desktop.
Save mattiaerre/3f02a8554fbd365a860aa07b8d2c553d to your computer and use it in GitHub Desktop.
/* eslint no-console: off */
const http = require('http');
const _ = require('lodash');
const randomHttpStatusCode = _.sample(_.invert(http.STATUS_CODES));
console.log('randomHttpStatusCode:', randomHttpStatusCode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment