Skip to content

Remove old // module headers from JS files #95

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 26, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Control/Apply.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Control.Apply

exports.arrayApply = function (fs) {
return function (xs) {
var result = [];
Expand Down
2 changes: 0 additions & 2 deletions src/Control/Bind.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Control.Bind

exports.arrayBind = function (arr) {
return function (f) {
var result = [];
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Bounded.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Bounded

exports.topInt = 2147483647;
exports.bottomInt = -2147483648;

Expand Down
2 changes: 0 additions & 2 deletions src/Data/Eq.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Eq

exports.refEq = function (r1) {
return function (r2) {
return r1 === r2;
Expand Down
2 changes: 0 additions & 2 deletions src/Data/EuclideanRing.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.EuclideanRing

exports.intDegree = function (x) {
return Math.abs(x);
};
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Functor.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Functor

exports.arrayMap = function (f) {
return function (arr) {
var l = arr.length;
Expand Down
2 changes: 0 additions & 2 deletions src/Data/HeytingAlgebra.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.HeytingAlgebra

exports.boolConj = function (b1) {
return function (b2) {
return b1 && b2;
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Ord.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Ord

exports.ordArrayImpl = function (f) {
return function (xs) {
return function (ys) {
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Ord/Unsafe.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Ord.Unsafe

exports.unsafeCompareImpl = function (lt) {
return function (eq) {
return function (gt) {
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Ring.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Ring

exports.intSub = function (x) {
return function (y) {
/* jshint bitwise: false */
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Semigroup.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Semigroup

exports.concatString = function (s1) {
return function (s2) {
return s1 + s2;
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Semiring.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Semiring

exports.intAdd = function (x) {
return function (y) {
/* jshint bitwise: false */
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Show.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Data.Show

exports.showIntImpl = function (n) {
return n.toString();
};
Expand Down
2 changes: 0 additions & 2 deletions src/Data/Unit.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
"use strict";

// module Data.Unit

exports.unit = {};
2 changes: 0 additions & 2 deletions test/Test/Main.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Test.Main

exports.testNumberShow = function(showNumber) {
return function() {
function testAll(cases) {
Expand Down