eslint-plugin-jira 0.0.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of eslint-plugin-jira might be problematic. Click here for more details.

@@ -0,0 +1,16 @@
1
+ // apple-counter.js
2
+
3
+ let appleCount = 0;
4
+
5
+ function incrementAppleCount() {
6
+ appleCount++;
7
+ }
8
+
9
+ function getAppleCount() {
10
+ return appleCount;
11
+ }
12
+
13
+ module.exports = {
14
+ incrementAppleCount,
15
+ getAppleCount,
16
+ };
package/index.js CHANGED
@@ -1 +1,6 @@
1
- // Not implemented
1
+ const { incrementAppleCount, getAppleCount } = require('./apple-counter');
2
+
3
+ module.exports = {
4
+ incrementAppleCount,
5
+ getAppleCount,
6
+ };