UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

9 lines (6 loc) 244 B
var REMOTE_RESOURCE_PATTERN = /^(\w+:\/\/|\/\/)/; var FILE_RESOURCE_PATTERN = /^file:\/\//; function isRemoteResource(uri) { return REMOTE_RESOURCE_PATTERN.test(uri) && !FILE_RESOURCE_PATTERN.test(uri); } module.exports = isRemoteResource;