UNPKG

javascript-unwind

Version:

A very simple native function for unwinding a collection by a property, like MongoDB's $unwind function.

19 lines (18 loc) 438 B
version: 2 jobs: build: docker: - image: circleci/node:8.8.1-browsers working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} - v1-dependencies- - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: npm test