Skip to content

Commit

Permalink
chore: remove travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaagie committed Jan 30, 2022
1 parent a1051e5 commit bbd2ebc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 32 deletions.
28 changes: 0 additions & 28 deletions .travis.yml

This file was deleted.

6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# predefine

[![Build Status](https://travis-ci.org/bigpipe/predefine.png)](https://travis-ci.org/bigpipe/predefine)

When creating objects or prototypes using `Object.defineProperties` or
`Object.defineProperty` it make your code look really verbose by all the
property descriptions that it needs. Most of the time, they are the same. They
Expand Down Expand Up @@ -72,8 +70,8 @@ This is a simple helper function to create descriptions that can be used within
`Object.create` and `Object.defineProperties`.

```js
var data = Object.create(null, predefine.create('foo', {
value: 'bar'
var data = Object.create(null, predefine.create('foo', {
value: 'bar'
}));

var data = Object.create(null, predefine.create('foo', {
Expand Down

0 comments on commit bbd2ebc

Please sign in to comment.