-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
166 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import jscodeshift from 'jscodeshift'; | ||
import { removeImport } from '../shared.js'; | ||
|
||
/** | ||
* @typedef {import('../../types.js').Codemod} Codemod | ||
* @typedef {import('../../types.js').CodemodOptions} CodemodOptions | ||
*/ | ||
|
||
/** | ||
* @param {CodemodOptions} [options] | ||
* @returns {Codemod} | ||
*/ | ||
export default function (options) { | ||
return { | ||
name: 'is-date-object', | ||
transform: ({ file }) => { | ||
const j = jscodeshift; | ||
const root = j(file.source); | ||
|
||
removeImport('is-date-object', root, j); | ||
|
||
// Replace all calls to isDate with Object.prototype.toString.call | ||
root | ||
.find(j.CallExpression, { | ||
callee: { | ||
type: 'Identifier', | ||
name: 'isDate', | ||
}, | ||
}) | ||
.replaceWith((path) => { | ||
const arg = path.node.arguments[0]; | ||
return j.callExpression( | ||
j.memberExpression( | ||
j.memberExpression( | ||
j.memberExpression( | ||
j.identifier('Object'), | ||
j.identifier('prototype'), | ||
), | ||
j.identifier('toString'), | ||
), | ||
j.identifier('call'), | ||
), | ||
[arg], | ||
); | ||
}) | ||
.forEach((path) => { | ||
const parent = path.parent.node; | ||
if (j.BinaryExpression.check(parent)) { | ||
parent.operator = '==='; | ||
parent.right = j.literal('[object Date]'); | ||
} else if ( | ||
j.CallExpression.check(parent) && | ||
parent.arguments.length === 1 | ||
) { | ||
const newExpression = j.binaryExpression( | ||
'===', | ||
path.node, | ||
j.literal('[object Date]'), | ||
); | ||
parent.arguments[0] = newExpression; | ||
} | ||
}); | ||
|
||
return root.toSource({ quote: 'single' }); | ||
}, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var assert = require('assert'); | ||
|
||
assert.notOk(Object.prototype.toString.call(undefined) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(null) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(false) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(true) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(42) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call('foo') === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(function () {}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call([]) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call({}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(/a/g) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(new RegExp('a', 'g')) === '[object Date]'); | ||
|
||
assert.ok(Object.prototype.toString.call(new Date()) === '[object Date]'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
var assert = require('assert'); | ||
var isDate = require('is-date-object'); | ||
|
||
assert.notOk(isDate(undefined)); | ||
assert.notOk(isDate(null)); | ||
assert.notOk(isDate(false)); | ||
assert.notOk(isDate(true)); | ||
assert.notOk(isDate(42)); | ||
assert.notOk(isDate('foo')); | ||
assert.notOk(isDate(function () {})); | ||
assert.notOk(isDate([])); | ||
assert.notOk(isDate({})); | ||
assert.notOk(isDate(/a/g)); | ||
assert.notOk(isDate(new RegExp('a', 'g'))); | ||
|
||
assert.ok(isDate(new Date())); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
var assert = require('assert'); | ||
|
||
assert.notOk(Object.prototype.toString.call(undefined) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(null) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(false) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(true) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(42) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call('foo') === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(function () {}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call([]) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call({}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(/a/g) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(new RegExp('a', 'g')) === '[object Date]'); | ||
|
||
assert.ok(Object.prototype.toString.call(new Date()) === '[object Date]'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import assert from 'assert'; | ||
|
||
assert.notOk(Object.prototype.toString.call(undefined) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(null) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(false) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(true) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(42) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call('foo') === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(function () {}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call([]) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call({}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(/a/g) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(new RegExp('a', 'g')) === '[object Date]'); | ||
|
||
assert.ok(Object.prototype.toString.call(new Date()) === '[object Date]'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import assert from 'assert'; | ||
import isDate from 'is-date-object'; | ||
|
||
assert.notOk(isDate(undefined)); | ||
assert.notOk(isDate(null)); | ||
assert.notOk(isDate(false)); | ||
assert.notOk(isDate(true)); | ||
assert.notOk(isDate(42)); | ||
assert.notOk(isDate('foo')); | ||
assert.notOk(isDate(function () {})); | ||
assert.notOk(isDate([])); | ||
assert.notOk(isDate({})); | ||
assert.notOk(isDate(/a/g)); | ||
assert.notOk(isDate(new RegExp('a', 'g'))); | ||
|
||
assert.ok(isDate(new Date())); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import assert from 'assert'; | ||
|
||
assert.notOk(Object.prototype.toString.call(undefined) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(null) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(false) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(true) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(42) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call('foo') === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(function () {}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call([]) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call({}) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(/a/g) === '[object Date]'); | ||
assert.notOk(Object.prototype.toString.call(new RegExp('a', 'g')) === '[object Date]'); | ||
|
||
assert.ok(Object.prototype.toString.call(new Date()) === '[object Date]'); |