Answers for "typescript static class equivalent"

1

typescript static class equivalent

//Example of Typescript static class equivalent
export abstract class Tools {   
  public static truncate(str, length) { 
    var ending = '...'; 
    if (str.length > length) { 
      return str.substring(0, length - ending.length) + ending; 
    } else { 
      return str; 
    } 
  }; 
}
Posted by: Guest on July-03-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language