-
Notifications
You must be signed in to change notification settings - Fork 653
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #778 from spencermountain/dev
Dev
- Loading branch information
Showing
64 changed files
with
1,874 additions
and
850 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,40 @@ | ||
// let doc = nlp('i am being driven') | ||
// let doc = nlp('i should be driven') | ||
// let doc = nlp('i should have been driven') | ||
// doc.verbs().toParticiple() | ||
// doc.verbs().toPastTense() | ||
// doc.debug() | ||
// console.log(doc.verbs(0).conjugate()) | ||
// doc.sentences().toFutureTense().debug() | ||
|
||
// console.log(nlp('next week').dates().json()) | ||
// nlp('you are John, Lisa, Fred').match('#FirstName{1,2}').debug() | ||
|
||
// let doc = nlp('i could study').debug() | ||
// doc.verbs().toParticiple() | ||
// doc.sentences().toPastTense() | ||
// console.log(doc.text()) | ||
// i thought he really could have. | ||
|
||
// let doc = nlp('i did really walk') | ||
// doc.sentences().toPresentTense() | ||
// console.log(doc.text()) | ||
|
||
// nlp('lowered according').debug() | ||
// nlp('it bristles outwards, brushlike.').debug() | ||
// nlp('red-shouldered').debug() | ||
// nlp('age of it').debug() | ||
// nlp('so well that').debug() | ||
// nlp('is off-white').debug() | ||
// nlp('polyunsaturated').debug() | ||
// nlp('favoured treat').debug() | ||
|
||
/* | ||
Snowboarding is a winter sport. [snowboarding = subject] | ||
I love snowboarding. [snowboarding = object ] | ||
I am excited by snowboarding. [snowboarding = object of a preposition] | ||
One popular sport is snowboarding. [snowboarding = subject complement] | ||
Right now, the athlete is snowboarding. [is snowboarding = present continuous] | ||
He was snowboarding yesterday afternoon. [was snowboarding = past continuous] | ||
Tomorrow, my friends and I are going to be snowboarding. [are going to be snowboarding = future | ||
*/ |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// uncontroversial date words | ||
module.exports = ['today', 'tomorrow', 'tmr', 'tmrw', 'yesterday', 'weekend'] | ||
module.exports = ['today', 'tomorrow', 'tmr', 'tmrw', 'yesterday', 'weekend', 'ago'] |
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
Oops, something went wrong.