Utils Project

Every project of any size grows a utils module that contains random helpers. Many of these outgrow their origins and become a shared general-purpose library, such as Lodash in JS or ActiveSupport in Ruby.

Objective

Create your own mini utils file and implement the following functions from lodash:

Array

Map

String

In addition, choose three more functions from the (long) list in the lodash docs.

Additional Requirements

Bonus