1 Star 0 Fork 21

chunlin428/crypto-js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pad-nopadding.js 554 Bytes
一键复制 编辑 原始数据 按行查看 历史
evanvosberg 提交于 2015-04-01 15:11 . Merge branch 'release/3.1.4'
;(function (root, factory, undef) {
if (typeof exports === "object") {
// CommonJS
module.exports = exports = factory(require("./core"), require("./cipher-core"));
}
else if (typeof define === "function" && define.amd) {
// AMD
define(["./core", "./cipher-core"], factory);
}
else {
// Global (browser)
factory(root.CryptoJS);
}
}(this, function (CryptoJS) {
/**
* A noop padding strategy.
*/
CryptoJS.pad.NoPadding = {
pad: function () {
},
unpad: function () {
}
};
return CryptoJS.pad.NoPadding;
}));
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/tiger428/crypto-js.git
git@gitee.com:tiger428/crypto-js.git
tiger428
crypto-js
crypto-js
master

搜索帮助