npm.io
2.0.3 • Published 7 years ago

bwindow

Licence
MIT
Version
2.0.3
Deps
0
Size
25 kB
Vulns
0
Weekly
0

bwindow

Build Status npm Version JS Standard

Browser window accessor

Installation

$ npm install bwindow --save

Usage

'use strict'

const { get } = require('bwindow')

// Check document object available
{
  let isServerSide = !get('document')
  /* ... */
}

// With strict options, throws an error when not found
{
  let URL = get('URL', { strict: true })
  /* ... */
}

Functions

Available functions

Signature Description
get(name, options, options.strict) -> ?Object Get object from window
once(event, handler) -> function Bind window event once
set(name, value, options, options.strict) -> ?Object Set object to window

License

This software is released under the MIT License.