blob: 0d716f42d9290c5d3d14151d1568a84c616f7f88 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
export {
extend,
def,
remove,
hasOwn,
bind,
toArray,
isObject,
isPlainObject
} from './shared'
/**
* Check if a string starts with $ or _
*
* @param {String} str
* @return {Boolean}
*/
export function isReserved (str) {
const c = (str + '').charCodeAt(0)
return c === 0x24 || c === 0x5F
}
// can we use __proto__?
export const hasProto = '__proto__' in {}
let _Set
/* istanbul ignore next */
if (typeof Set !== 'undefined' && Set.toString().match(/native code/)) {
// use native Set when available.
_Set = Set
}
else {
// a non-standard Set polyfill that only works with primitive keys.
_Set = function () {
this.set = Object.create(null)
}
_Set.prototype.has = function (key) {
return this.set[key] !== undefined
}
_Set.prototype.add = function (key) {
if (key == null || this.set[key]) {
return
}
this.set[key] = 1
}
_Set.prototype.clear = function () {
this.set = Object.create(null)
}
}
export { _Set }
/**
* Polyfill in iOS7 by native because the JavaScript polyfill has memory problem.
* @return {object}
*/
export function createNewSet () {
/* istanbul ignore next */
/* eslint-disable */
if (typeof nativeSet === 'object') {
return nativeSet.create()
}
/* eslint-enable */
return new _Set()
}
/**
* Create a cached version of a pure function.
*
* @param {Function} fn
* @return {Function}
*/
export function cached (fn) {
const cache = Object.create(null)
return function cachedFn (str) {
const hit = cache[str]
return hit || (cache[str] = fn(str))
}
}
/**
* Camelize a hyphen-delmited string.
*
* @param {String} str
* @return {String}
*/
const camelizeRE = /-(\w)/g
export const camelize = cached(str => {
return str.replace(camelizeRE, toUpper)
})
function toUpper (_, c) {
return c ? c.toUpperCase() : ''
}
/**
* Hyphenate a camelCase string.
*
* @param {String} str
* @return {String}
*/
const hyphenateRE = /([a-z\d])([A-Z])/g
export const hyphenate = cached(str => {
return str
.replace(hyphenateRE, '$1-$2')
.toLowerCase()
})
export function typof (v) {
const s = Object.prototype.toString.call(v)
return s.substring(8, s.length - 1).toLowerCase()
}
// weex name rules
const WEEX_COMPONENT_REG = /^@weex-component\//
const WEEX_MODULE_REG = /^@weex-module\//
const NORMAL_MODULE_REG = /^\.{1,2}\//
const JS_SURFIX_REG = /\.js$/
export const isWeexComponent = name => !!name.match(WEEX_COMPONENT_REG)
export const isWeexModule = name => !!name.match(WEEX_MODULE_REG)
export const isNormalModule = name => !!name.match(NORMAL_MODULE_REG)
export const isNpmModule = name => !isWeexComponent(name) && !isWeexModule(name) && !isNormalModule(name)
export function removeWeexPrefix (str) {
const result = str.replace(WEEX_COMPONENT_REG, '').replace(WEEX_MODULE_REG, '')
return result
}
export function removeJSSurfix (str) {
return str.replace(JS_SURFIX_REG, '')
}