Skip to content

Instantly share code, notes, and snippets.

@HyunSeob
Last active May 27, 2017 01:45
Show Gist options
  • Save HyunSeob/9d50d0a6c464071bd34ed983f5f08439 to your computer and use it in GitHub Desktop.
Save HyunSeob/9d50d0a6c464071bd34ed983f5f08439 to your computer and use it in GitHub Desktop.
const _ = require('lodash');
exports.handler = (event, context, callback) => {
const result = _.range(1, event.num + 1);
callback(null, result);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment