1.0.0 • Published 4 years ago

@bemoje/is-window v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

@bemoje/is-window

Determine if a value is a window-object.

Version

Travis CI

Dependencies

Stats

Donate

Installation

npm install @bemoje/is-window
npm install --save @bemoje/is-window
npm install --save-dev @bemoje/is-window

Usage

import isWindow from '@bemoje/is-window'

// fake window object
const window = {}
window.window = window

isWindow(window)
//=> true

Tests

Uses Jest to test module functionality. Run tests to get coverage details.

npm run test

API

Table of Contents

isWindow

Determine if a value is a window-object.

Parameters
  • value any The value

Returns boolean