Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 546 Bytes

File metadata and controls

36 lines (22 loc) · 546 Bytes

subjectify

Make all method calls return their call subject.

Installation

npm i subjectify

Usage

Original code:

const element = document.createElement('div')

element.setAttribute('class', 'foo')
element.setAttribute('id', 'bar')
element.append('hello world')

Simplified code using subjectify():

import subjectify from 'subjectify'


const element = subjectify(document.createElement('div'))
        .setAttribute('class', 'foo')
        .setAttribute('id', 'bar')
        .append('hello world')