Core components of at.pkgs ECMAScript / JavaScript library.
- Version:
- 1.0.0
- Copyright:
- 2009-2014, Architector Inc., Japan
- Source:
Classes
Namespaces
Methods
-
<static> hash(source) → {Number}
-
文字列の簡易ハッシュ値を計算する.
8bitの巡回冗長検査値(CRC-8). ユニコード文字については下位8bitのみを対象とする.
セキュリティには全く寄与しない. チェックサムやラウンドロビンなどに使用する.
Parameters:
Name Type Description source
String ハッシュ値計算対象文字列.
- Since:
- 0.1.6
- Source:
Returns:
0から255までのハッシュ値.
- Type
- Number
-
<static> template(source) → {at.pkgs.TemplateEngine~Renderer}
-
デフォルトテンプレートエンジンを使用してテンプレートを処理し、テンプレート実行関数を生成する.
チュートリアル: at.pkgs.Template
Parameters:
Name Type Description source
String テンプレートソース.
- Since:
- 0.1.4
- Source:
Returns:
テンプレート実行関数.