Skip to content

Releases: TogaTech/helpful.js

Helpful.js v1.0.7

28 Oct 15:30
Compare
Choose a tag to compare

This release includes the following methods:

  • shuffleArray - Shuffles an array, returning another array with the same values but in a different order
  • reverseArray - Reverses an array by creating a new array with the same values in the opposite order
  • pad - Pads a string by adding characters on both sides until the string reaches a certain size
  • padStart - Pads a string by adding characters to the start until the string reaches a certain size
  • padEnd - Pads a string by adding characters to the end until the string reach a certain size
  • chunkArray - Splits an array into n-sized chunks
  • average - Finds the average of an array

Helpful.js v1.0.6

25 Oct 00:37
Compare
Choose a tag to compare

This release includes the following methods:

  • capitalize - Capitalizes the first letter of every word
  • mergeArrays - Merges the second array into the first one (skip duplicated values)

Additionally, the license has been updated to GNU Affero General Public License v3.0.

Helpful.js v1.0.5

20 Oct 23:16
Compare
Choose a tag to compare

This release fixes an issue in the documentation on NPM.

Helpful.js v1.0.4

20 Oct 23:12
Compare
Choose a tag to compare

This release includes the following methods:

  • differenceOfArrays - Finds the difference between two arrays (any identical elements in the second array are removed from the first array)
  • sumOfArrays - Finds the sum of two arrays (the two arrays are combined)

Helpful.js v1.0.3

07 Oct 19:38
Compare
Choose a tag to compare

This release ensures that the @togatech/helpful-js package is public on NPM.

Helpful.js v1.0.2

07 Oct 19:23
Compare
Choose a tag to compare

This release fixes an issue with conflicts on the NPM package name.

Helpful.js v1.0.1

07 Oct 17:37
Compare
Choose a tag to compare

This release includes the following methods:

  • stringToArray - Converts a string into an array of individual characters
  • duplicateArray - Duplicates an array by creating a new array and transferring all the elements from the first array
  • hex.convertFromString - Converts a string to hexadecimal
  • hex.convertToString - Converts hexadecimal to a string
  • hex.convertFromBytes - Converts a bytes array to hexadecimal
  • hex.convertToBytes - Converts hexadecimal to a bytes array

Information, contributing guidelines, documentation template, test cases template, issue template, pull request template, and CI tests have been added in the first release of helpful.js.