Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 280 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 280 Bytes

Rube Goldberg's toLower()

An async Node helper method for converting a string to lowercase.

Usage

const toLower = require('rube-goldberg-to-lower');

(async () => {
  const lowered = await toLower('LOUD STRING');
  console.log(lowered); // "loud string"
})();