Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dbgame-tinypng
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wildfirecode13
dbgame-tinypng
Commits
a14ea6df
Commit
a14ea6df
authored
Jul 10, 2018
by
wildfirecode
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
99a4b5bc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
tinypng.js
tinypng.js
+3
-1
No files found.
tinypng.js
View file @
a14ea6df
...
@@ -3,13 +3,15 @@ var walk = require("./walk");
...
@@ -3,13 +3,15 @@ var walk = require("./walk");
module
.
exports
=
(
input
,
output
)
=>
{
module
.
exports
=
(
input
,
output
)
=>
{
walk
(
input
,
(
err
,
result
)
=>
{
walk
(
input
,
(
err
,
result
)
=>
{
input
=
path
.
normalize
(
input
);
output
=
path
.
normalize
(
output
);
let
count
=
0
;
let
count
=
0
;
let
imgURLs
=
result
.
filter
(
let
imgURLs
=
result
.
filter
(
val
=>
[
'.jpg'
,
'.png'
].
indexOf
(
path
.
extname
(
val
))
!=
-
1
);
val
=>
[
'.jpg'
,
'.png'
].
indexOf
(
path
.
extname
(
val
))
!=
-
1
);
imgURLs
=
imgURLs
.
map
(
val
=>
{
imgURLs
=
imgURLs
.
map
(
val
=>
{
let
inputSplited
=
input
.
split
(
path
.
sep
);
let
inputSplited
=
input
.
split
(
path
.
sep
);
let
splited
=
val
.
split
(
path
.
sep
);
let
splited
=
val
.
split
(
path
.
sep
);
return
splited
.
slice
(
inputSplited
.
length
-
1
).
join
(
path
.
sep
);
return
splited
.
slice
(
inputSplited
.
length
).
join
(
path
.
sep
);
})
})
if
(
imgURLs
.
length
==
0
)
{
console
.
log
(
'没有需要处理的图片.'
);
return
;
}
if
(
imgURLs
.
length
==
0
)
{
console
.
log
(
'没有需要处理的图片.'
);
return
;
}
console
.
log
(
`图片遍历完毕,共有
${
imgURLs
.
length
}
张`
);
console
.
log
(
`图片遍历完毕,共有
${
imgURLs
.
length
}
张`
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment