Skip to content

Commit 868655e

Browse files
committed
# UPDATE
- add `reversed` method for `Tween` class
1 parent 66d30b6 commit 868655e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
"test-style": "jscs --config test/jscs.json src/Tween.js",
1919
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
2020
},
21+
"release": {
22+
"debug": false
23+
},
2124
"repository": {
2225
"type": "git",
2326
"url": "git+https://github.com/tweenjs/es6-tween.git"

src/dist/Tween.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ class Tween {
7979

8080
return this;
8181
}
82+
reversed() {
83+
return this._reversed;
84+
}
8285
off( name, fn ) {
8386
if ( this._events[ name ] === undefined ) {
8487
return this;

0 commit comments

Comments
 (0)