zhbus

```javascript 'use strict';

Usage no npm install needed!

<script type="module">
  import zhbus from 'https://cdn.skypack.dev/zhbus';
</script>

README

ZHBus API

'use strict';

let zhbus = require('zhbus').default;
zhbus('3A-九洲港,3路-九洲港', '九洲城').then(
    function(buses) {
        /**
         * [ { bus: '3A', station: '吉大', dist: 1 },
         *   { bus: '3路', station: '交行大厦', dist: 2 },
         *   { bus: '3路', station: '交行大厦', dist: 2 },
         *   { bus: '3A', station: '珠海电台', dist: 3 } ]
         */
        console.log(buses);
    }
);