包详细信息

string-templates

steelbrain33MIT不推荐使用1.0.6

No longer maintained

String creation and templating helpers

string, template

自述文件

String-Templates-JS

String-Templates-JS is the JS port of my String-Templates module. It's lightweight and usable almost everywhere.

API

export class Template {
  constructor(wrappers = ['{', '}']): Template
  render(content, parameters = {}): String
  static create(wrappers = DEFAULT): Template
}
export class Builder {
  constructor(contents = '', wrappers = DEFAULT): Builder
  add(content): this
  addLine(content): this
  render(content, parameters = null): this
  renderLine(content, parameters = null): this
  toString(): String
  static create(contents = '', wrappers = DEFAULT): Builder
}

LICENSE

This project is licensed under the terms of MIT License, See the LICENSE file for more info