Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace String

Index

Functions

isLatin

  • isLatin(): boolean
  • example
    //Property is available in String as a prototype
    //The next line needs to be called before usage, recommended to be places in Init/Middleware.js
    require("@iotechpis/utils").String

    "Piqué".isLatin();
    // returns false
    "Pique".isLatin();
    // returns true
    "Piqué".latinise().isLatin();
    // returns true

    Returns boolean

latinise

  • latinise(): string
  • example
    //Property is available in String as a prototype
    //The next line needs to be called before usage, recommended to be places in Init/Middleware.js
    require("@iotechpis/utils").String


    "Piqué".latinize();
    // returns "Pique"

    Returns string

Generated using TypeDoc