Skip to content

Latest commit

 

History

History
68 lines (45 loc) · 5.36 KB

CHANGELOG.md

File metadata and controls

68 lines (45 loc) · 5.36 KB

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

0.3.1 (2022-09-30)

Features

  • lc-first: convert the first character of string to lowercase (26afd32)

Bug Fixes

  • camel: fix convert to camel-case (4765fc2)
  • camel: fix function parameter (3a7ed64)
  • kebab: fix function parameter (834310a)

0.3.0 (2022-09-30)

Features

  • kebab: converts the given string to kebab-case (a2b4447)
  • snake: converts the given string to snake_case (9793d57)
  • wrap: wrap the string with the given strings (66489fd)

0.2.0 (2022-09-28)

Features

  • after-last: returns everything after the last occurrence of the given value in a string (46184e2)
  • after: returns everything after the given value in a string. (62b9dd5)
  • before-last: returns everything before the last occurrence of the given value in a string (758eae6)
  • before: returns everything before the given value in a string (238fdc0)
  • between-first: returns the smallest possible portion of a string between two values (28e00ec)
  • between: returns the portion of a string between two values (9d3c75f)
  • camel: converts the given string to camelCase (2896a9e)
  • containsall: determines if the given string contains all of the values in a given array (d96bc9a)
  • contains: determines if the given string contains the given value (c742eec)
  • endswith: determines if the given string ends with the given value (12db018)
  • is-json: determines if the given string is valid JSON: (c257b3b)
  • length: returns the length of the given string (bcc9007)
  • limit: truncates the given string to the specified length (b172c72)
  • lower: converts the given string to lowercase (cb9ac90)
  • random: generates a random string of the specified length (2f2d163)
  • upper: convert the given string to upper-case (3788054)

0.1.6 (2022-09-28)

Features

Bug Fixes