Skip to content

Commit 0d3fb26

Browse files
committed
Upgrade version and modify multiple configurations
1 parent 2da21ee commit 0d3fb26

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</head>
1212

1313
<body>
14-
<a href="https://github.com/a-jie/ppo"><img style="position: absolute; top: 0; right: 0; border: 0;" src="docs/imgs/blue.png"></a>
14+
<a href="https://github.com/drawcall/ppo"><img style="position: absolute; top: 0; right: 0; border: 0;" src="docs/imgs/blue.png"></a>
1515
<div id="sidebar" class="interface">
1616
<div class="searchable_section">
1717
<a class="toc_title" href="#">
@@ -27,7 +27,7 @@
2727
</p>
2828

2929
<p class="instxt">
30-
Every frontend developer has written his own utils library, and we often write methods that are easily forgotten and highly used. <a class="link" href="https://a-jie.github.io/ppo/" target="_blank">ppo</a> is a super small and useful utils library for JavaScript. It and <a class="link" href="https://github.com/lodash/lodash" target="_blank">lodash</a> <a class="link" href="https://github.com/jashkenas/underscore" target="_blank">underscore</a> <a class="link" href="https://github.com/dtao/lazy.js" target="_blank">lazy.js</a> almost no coupling.
30+
Every frontend developer has written his own utils library, and we often write methods that are easily forgotten and highly used. <a class="link" href="https://drawcall.github.io/ppo/" target="_blank">ppo</a> is a super small and useful utils library for JavaScript. It and <a class="link" href="https://github.com/lodash/lodash" target="_blank">lodash</a> <a class="link" href="https://github.com/jashkenas/underscore" target="_blank">underscore</a> <a class="link" href="https://github.com/dtao/lazy.js" target="_blank">lazy.js</a> almost no coupling.
3131
I sorted out the most frequently used function functions in everyday development. These functions are almost ubiquitous in your development, and they are not found in lodash underscore.
3232
</p></p>
3333
Most of the code comes from the <a class="link" href="https://stackoverflow.com/" target="_blank">stackoverflow</a> site in the high score answer, here to pay tribute to the original author.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"name": "ppo",
3+
"version": "1.3.7",
34
"description": "JavaScript's functional programming helper library.",
4-
"homepage": "https://a-jie.github.io/ppo/",
5+
"homepage": "https://drawcall.github.io/ppo/",
56
"keywords": [
67
"util",
78
"functional",
89
"lodash",
910
"browser"
1011
],
11-
"author": "a-jie <[email protected]>",
12+
"author": "drawcall <[email protected]>",
1213
"repository": {
1314
"type": "git",
14-
"url": "git://github.com/a-jie/ppo.git"
15+
"url": "git://github.com/drawcall/ppo.git"
1516
},
1617
"main": "ppo.min.js",
1718
"types": "ppo.d.ts",
18-
"version": "1.3.6",
1919
"devDependencies": {},
2020
"scripts": {
2121
"build": "uglifyjs ppo.js -o ppo.min.js -c -m --source-map"

ppo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* PPO
33
* +++++++++ a utility-belt library for JavaScript +++++++++
4-
* (c) 2011-2017 a-jie
5-
* https://github.com/a-jie
4+
* (c) 2011-2017 drawcall
5+
* https://github.com/drawcall
66
*/
77

88
(function (global, factory) {
@@ -330,7 +330,7 @@
330330
/**
331331
* setCookie / getCookie / deleteCookie
332332
* From https://stackoverflow.com/questions/1458724/how-do-i-set-unset-cookie-with-jquery/1458728#1458728
333-
* change by a-jie
333+
* change by drawcall
334334
*/
335335
ppo.setCookie = function (name, value, option) {
336336
var longTime = 10;

0 commit comments

Comments
 (0)