Skip to content

Instantly share code, notes, and snippets.

@katelynsills
Last active December 1, 2018 02:12
Show Gist options
  • Save katelynsills/7116bc5832325dc869cb6cf089803a73 to your computer and use it in GitHub Desktop.
Save katelynsills/7116bc5832325dc869cb6cf089803a73 to your computer and use it in GitHub Desktop.
safeAddExclamation
'use strict';
const safeAddExclamation = str => {
return `${str}!`;
};
module.exports = safeAddExclamation;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment