JavaScript 的测试框架 Doctest.js

码农软件 · 软件分类 · 单元测试工具 · 2019-11-19 05:57:55

软件介绍

Doctest.js 是 JavaScript 的测试框架。

示例测试代码:

function capitalize(words) {
  return words.replace(/\b[a-z]/g, function (m) {
    return m[0].toUpperCase();
  });
}

print(capitalize('some words'));

// => Some Words

print(capitalize('some 4ward words'));

// => Some 4ward Words

本文地址:https://www.codercto.com/soft/d/19300.html

Domain-Driven Design

Domain-Driven Design

Eric Evans / Addison-Wesley Professional / 2003-8-30 / USD 74.99

"Eric Evans has written a fantastic book on how you can make the design of your software match your mental model of the problem domain you are addressing. "His book is very compatible with XP. It is n......一起来看看 《Domain-Driven Design》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

URL 编码/解码
URL 编码/解码

URL 编码/解码

SHA 加密
SHA 加密

SHA 加密工具