UNPKG

mao-rn-android-kit

Version:

为 React Native 开发 提供的一些Android原生模块/组件 (react native, CoordinatorLayout, AppBarLayout, TabLayout, NestedScrollView, PopupWindow)

12 lines (11 loc) 323 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function foramt(template, data) { if (!data) { return template; } return template.replace(/\{([^\}]+)\}/g, (mStr, cStr1) => { return data.hasOwnProperty(cStr1) ? data[cStr1] : cStr1; }); } exports.foramt = foramt;