UNPKG

@kittyka/babyshark

Version:

Turn the string to uppercase

4 lines 170 B
module.exports = function babyshark(string) { if (typeof string !== "string") throw new TypeError("Babyshark wants a string!"); return string.toUpperCase(); };