New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

testwords

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

testwords

Words used in common vocabulary tests such as TOEFL and SAT

latest
Source
npmnpm
Version
1.0.10
Version published
Weekly downloads
2
-77.78%
Maintainers
1
Weekly downloads
 
Created
Source

TestWords

Simple object of the top 500+ vocabulary words used in SAT and TOEFL

Install the interface module into your node project with:

npm install --save testwords

Functionality

// ES2015
var testwords = new require('testwords'); 

// or ES6
import Testwords from 'testwords'
var testwords = new Testwords()


// Return an object (fast associative array) of words 
testwords.sat // returns object of top words used in SAT tests
testwords.toefl // returns object of top words used in TOEFL tests
testwords.allwords // returns object of all words without duplication

// Return array list of words
testwords.satWordsList() // returns array of top words used in SAT tests
testwords.toeflWordsList() // returns array of top words used in TOEFL tests
testwords.allWordsList() // returns array of all words without duplication

// Check an individual word is in TOEFL or SAT. Not case sensitive.
// For more accuracy, normalize your word first with an NLP tool
//   such as "compromise" (https://www.npmjs.com/package/compromise)
testwords.isSAT('vindication') // true
testwords.isTOEFL('vindication') // false
testwords.isTestword('vindication') // true

Keywords

sat

FAQs

Package last updated on 22 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts