From 8ff2695accce631ff748d5584b018dab068be992 Mon Sep 17 00:00:00 2001 From: think2011 <452125301@qq.com> Date: Fri, 25 Dec 2015 01:31:47 +0800 Subject: [PATCH] publish --- all.html | 12 ++++++------ index.html | 12 ++++++------ pages.json | 2 +- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/all.html b/all.html index 3c184e6..abeaf4a 100644 --- a/all.html +++ b/all.html @@ -399,17 +399,17 @@

特点

  • _.ary & _.rearg 改变函数的实参个数和顺序
  • _.at 更方便的获取数组或对象的值
  • _.attempt 无需 try-catch 来处理可能会出错的执行函数
  • -
  • _.before_.after
  • +
  • _.before_.after 搭配
  • _.bindKey 实现 “懒传参”
  • _.chunk 按给定个数来拆分数组
  • _.clone 支持对 Date & RegExp 对象的浅拷贝
  • _.cloneDeep 深拷贝数组或对象
  • _.curry & _.curryRight 用于创建 柯里化 函数
  • -
  • _.debounce & _.throttle are cancelable & accept options for more control
  • -
  • _.defaultsDeep for recursively assigning default Properties
  • -
  • _.fill to fill arrays with values
  • -
  • _.findKey for finding keys
  • -
  • _.flow to complement _.flowRight (a.k.a _.compose)
  • +
  • _.debounce & _.throttle 处理函数防抖和节流
  • +
  • _.defaultsDeep 深分配对象枚举属性
  • +
  • _.fill 指定值填充数组
  • +
  • _.findKey 按 keys 查找对象
  • +
  • _.flow_.flowRight (即 _.compose) 搭配
  • _.forEach supports exiting early
  • _.forIn for iterating all enumerable Properties
  • _.forOwn for iterating own Properties
  • diff --git a/index.html b/index.html index f7bc43c..4a3a8a1 100644 --- a/index.html +++ b/index.html @@ -399,17 +399,17 @@

    特点

  • _.ary & _.rearg 改变函数的实参个数和顺序
  • _.at 更方便的获取数组或对象的值
  • _.attempt 无需 try-catch 来处理可能会出错的执行函数
  • -
  • _.before_.after
  • +
  • _.before_.after 搭配
  • _.bindKey 实现 “懒传参”
  • _.chunk 按给定个数来拆分数组
  • _.clone 支持对 Date & RegExp 对象的浅拷贝
  • _.cloneDeep 深拷贝数组或对象
  • _.curry & _.curryRight 用于创建 柯里化 函数
  • -
  • _.debounce & _.throttle are cancelable & accept options for more control
  • -
  • _.defaultsDeep for recursively assigning default Properties
  • -
  • _.fill to fill arrays with values
  • -
  • _.findKey for finding keys
  • -
  • _.flow to complement _.flowRight (a.k.a _.compose)
  • +
  • _.debounce & _.throttle 处理函数防抖和节流
  • +
  • _.defaultsDeep 深分配对象枚举属性
  • +
  • _.fill 指定值填充数组
  • +
  • _.findKey 按 keys 查找对象
  • +
  • _.flow_.flowRight (即 _.compose) 搭配
  • _.forEach supports exiting early
  • _.forIn for iterating all enumerable Properties
  • _.forOwn for iterating own Properties
  • diff --git a/pages.json b/pages.json index 31b6d92..4ee06be 100644 --- a/pages.json +++ b/pages.json @@ -1,5 +1,5 @@ [{ "href":"/", - "html":"

    lodash

    \n

    一个 JavaScript 的实用工具库, 表现一致性, 模块化, 高性能, 以及 可扩展

    \n\n\n\n

    Example

    \n
    _.assign({ 'a': 1 }, { 'b': 2 }, { 'c': 3 });\n// → { 'a': 1, 'b': 2, 'c': 3 }\n\n_.map([1, 2, 3], function(n) { return n * 3; });\n// → [3, 6, 9]\n
    \n

    特点

    \n\n

    关于翻译

    \n\n
    \n
    " } + "html":"

    lodash

    \n

    一个 JavaScript 的实用工具库, 表现一致性, 模块化, 高性能, 以及 可扩展

    \n\n\n\n

    Example

    \n
    _.assign({ 'a': 1 }, { 'b': 2 }, { 'c': 3 });\n// → { 'a': 1, 'b': 2, 'c': 3 }\n\n_.map([1, 2, 3], function(n) { return n * 3; });\n// → [3, 6, 9]\n
    \n

    特点

    \n\n

    关于翻译

    \n\n
    \n
    " } ,{ "href":"/1.", "html":"

    Download

    \n

    Review the build differences & pick the one that’s right for you.

    \n\n

    Installation

    \n

    In a browser:

    \n
    <script src="lodash.js"></script>\n

    In an AMD loader:

    \n
    require(['lodash'], function(_) {});\n

    Using npm:

    \n
    $ {sudo -H} npm i -g npm$ npm i --save lodash\n

    In Node.js/io.js:

    \n
    // load the modern build\nvar _ = require('lodash');\n\n// or a method category\nvar array = require('lodash/array');\n\n// or a method (great for smaller builds with browserify/webpack)\nvar chunk = require('lodash/array/chunk');\n

    See the package source for more details.

    \n

    Note:\nDon’t assign values to the special variable_” when in the REPL.\nInstall n_ for a REPL that includes lodash by default.

    \n

    Module formats

    \n

    lodash is also available in a variety of other builds & module formats.

    \n\n

    CDN copies are available on cdnjs & jsDelivr.\nCreate custom builds with only the features you need.\nLooking for more functional usage? Try lodash-fp.

    \n

    Dive in

    \n

    Check out our changelog, roadmap, as well as community created podcasts, posts, & videos.

    \n

    Support

    \n

    Tested in Chrome 43-44, Firefox 38-39, IE 6-11, MS Edge, Safari 5-8, ChakraNode 0.12.2, Node.js 0.8.28, 0.10.40, 0.12.7, & 4.0.0, PhantomJS 1.9.8, RingoJS 0.11, & Rhino 1.7.6

    \n

    Automated browser & CI test runs are available. Special thanks to Sauce Labs for providing automated browser testing.

    \n
    \n
    " } ,{ "href":"/2.",