Here is a list of all the functions in this package:
src
├── add-two-numbers
├── convert-binary-to-decimal
├── convert-binary-to-hexadecimal
├── convert-binary-to-octal
├── convert-celsius-to-fahrenheit
├── convert-centimeters-to-feet
├── convert-centimeters-to-inches
├── convert-days-to-hours
├── convert-days-to-minutes
├── convert-days-to-seconds
├── convert-decimal-to-binary
├── convert-decimal-to-hexadecimal
├── convert-decimal-to-octal
├── convert-hexadecimal-to-binary
├── convert-hexadecimal-to-decimal
├── convert-hexadecimal-to-octal
├── convert-octal-to-binary
├── convert-octal-to-decimal
├── convert-octal-to-hexadecimal
├── format-to-camelcase
├── format-to-constantcase
├── format-to-dotcase
├── format-to-kebabcase
├── format-to-pascalcase
├── format-to-pathcase
├── format-to-snakecase
├── format-to-titlecase
├── hello-world
└── substract-two-numbers
| Function Name | Parameters | Return Type | Example |
|---|---|---|---|
| AddTwoNumbers | number , number |
number |
AddTwoNumbers(1, 2) |
| ConvertBinaryToDecimal | string |
number |
ConvertBinaryToDecimal("101") |
| ConvertBinaryToHexadecimal | string |
string |
ConvertBinaryToHexadecimal("101") |
| ConvertBinaryToOctal | string |
string |
ConvertBinaryToOctal("101") |
| ConvertCelsiusToFahrenheit | number |
number |
ConvertCelsiusToFahrenheit(0) |
| ConvertCentimetersToFeet | number |
number |
ConvertCentimetersToFeet(0) |
| ConvertCentimetersToInches | number |
number |
ConvertCentimetersToInches(0) |
| ConvertDaysToHours | number |
number |
ConvertDaysToHours(0) |
| ConvertDaysToMinutes | number |
number |
ConvertDaysToMinutes(0) |
| ConvertDaysToSeconds | number |
number |
ConvertDaysToSeconds(0) |
| ConvertDecimalToBinary | number |
string |
ConvertDecimalToBinary(0) |
| ConvertDecimalToHexadecimal | number |
string |
ConvertDecimalToHexadecimal(0) |
| ConvertDecimalToOctal | number |
string |
ConvertDecimalToOctal(0) |
| ConvertHexadecimalToBinary | string |
string |
ConvertHexadecimalToBinary("0") |
| ConvertHexadecimalToDecimal | string |
number |
ConvertHexadecimalToDecimal("0") |
| ConvertHexadecimalToOctal | string |
string |
ConvertHexadecimalToOctal("0") |
| ConvertOctalToBinary | string |
string |
ConvertOctalToBinary("0") |
| ConvertOctalToDecimal | string |
number |
ConvertOctalToDecimal("0") |
| ConvertOctalToHexadecimal | string |
string |
ConvertOctalToHexadecimal("0") |
| FormatToCamelcase | string |
string |
FormatToCamelcase("hello world") |
| FormatToConstantcase | string |
string |
FormatToConstantcase("hello world") |
| FormatToDotcase | string |
string |
FormatToDotcase("hello world") |
| FormatToKebabcase | string |
string |
FormatToKebabcase("hello world") |
| FormatToPascalcase | string |
string |
FormatToPascalcase("hello world") |
| FormatToPathcase | string |
string |
FormatToPathcase("hello world") |
| FormatToSnakecase | string |
string |
FormatToSnakecase("hello world") |
| FormatToTitlecase | string |
string |
FormatToTitlecase("hello world") |
| HelloWorld | void |
string |
HelloWorld() |
| SubstractTwoNumbers | number , number |
number |
SubstractTwoNumbers(1, 2) |