You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

f-js

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

f-js - npm Package Compare versions

Comparing version

to
0.4.9

test/sauce/buster.js

21

Gruntfile.js

@@ -41,2 +41,20 @@ module.exports = function(grunt) {

}
},
'saucelabs-custom': {
all: {
options: {
urls: ['http://localhost:8000/'],
testname: 'F.js',
build: process.env.TRAVIS_JOB_ID,
browsers: [
["XP", "firefox", 28],
["XP", "chrome", 31]
],
sauceConfig: {
'record-video': false,
'capture-html': true
}
}
}
}

@@ -50,5 +68,6 @@ });

grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-saucelabs');
// Tasks
grunt.registerTask('test', ['buster']);
grunt.registerTask('test', ['buster', 'saucelabs-custom']);
grunt.registerTask('default', ['jshint', 'uglify', 'test']);

@@ -55,0 +74,0 @@ grunt.registerTask('hookmeup', ['clean:hooks', 'shell:hooks']);

4

package.json
{
"name": "f-js",
"version": "0.4.8",
"version": "0.4.9",
"description": "Dead simple library for functional and reactive programming",

@@ -21,2 +21,3 @@ "main": "dist/F.min.js",

"buster": "^0.7.18",
"buster-reporter-sauce": "^0.1.3",
"grunt": "^0.4.5",

@@ -28,4 +29,5 @@ "grunt-buster": "^0.3.2",

"grunt-contrib-uglify": "^0.7.0",
"grunt-saucelabs": "^8.4.1",
"grunt-shell": "^1.1.1"
}
}

@@ -18,5 +18,2 @@ # F.js

**Note!**: The current version requires an ES6 Promises polyfill. However, we
are working on an integrated polyfill so this requirement will be removed.
**With bower**

@@ -46,3 +43,3 @@ ```bash

```bash
curl https://codeload.github.com/colin-dumitru/F.js/zip/v0.4.5 -o F.js.zip
curl "https://codeload.github.com/colin-dumitru/F.js/zip/"`curl https://github.com/colin-dumitru/F.js/releases/latest| grep -o 'href=".*"' | cut -d / -f 8 | tr -d '"'` > F.js.zip
unzip F.js.zip

@@ -49,0 +46,0 @@ ```

@@ -29,8 +29,8 @@ if (typeof require !== 'undefined') {

})
.toArray(), [
["1", "b"],
["2", null],
["3", null],
["a", 1]
]
.toMap(), {
a: 1,
1: "b",
2: undefined,
3: null
}
)

@@ -37,0 +37,0 @@ },

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet